Skip to content
Snippets Groups Projects
Commit ccaad99f authored by Mark OLESEN's avatar Mark OLESEN Committed by Andrew Heather
Browse files

STYLE: initialize debug switches with int instead of bool

parent a6581d30
No related merge requests found
......@@ -30,7 +30,8 @@ License
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
int Foam::data::debug(Foam::debug::debugSwitch("data", false));
int Foam::data::debug(Foam::debug::debugSwitch("data", 0));
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
......
......@@ -30,7 +30,7 @@ License
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
int Foam::faSchemes::debug(Foam::debug::debugSwitch("faSchemes", false));
int Foam::faSchemes::debug(Foam::debug::debugSwitch("faSchemes", 0));
// * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * * //
......
......@@ -31,7 +31,7 @@ License
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
int Foam::fvSchemes::debug(Foam::debug::debugSwitch("fvSchemes", false));
int Foam::fvSchemes::debug(Foam::debug::debugSwitch("fvSchemes", 0));
// * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * * //
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment