STYLE: initialize debug switches with int instead of bool

This commit is contained in:
Mark Olesen
2019-08-22 10:20:36 +02:00
committed by Andrew Heather
parent a6581d3082
commit ccaad99f52
3 changed files with 4 additions and 3 deletions

View File

@ -30,7 +30,8 @@ License
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
int Foam::data::debug(Foam::debug::debugSwitch("data", false)); int Foam::data::debug(Foam::debug::debugSwitch("data", 0));
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //

View File

@ -30,7 +30,7 @@ License
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
int Foam::faSchemes::debug(Foam::debug::debugSwitch("faSchemes", false)); int Foam::faSchemes::debug(Foam::debug::debugSwitch("faSchemes", 0));
// * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * * // // * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * * //

View File

@ -31,7 +31,7 @@ License
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
int Foam::fvSchemes::debug(Foam::debug::debugSwitch("fvSchemes", false)); int Foam::fvSchemes::debug(Foam::debug::debugSwitch("fvSchemes", 0));
// * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * * // // * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * * //