Pulled NameEnum outside of debug namespace
This commit is contained in:
parent
8a09fd30a0
commit
4762fc42a3
1 changed files with 12 additions and 6 deletions
|
@ -43,14 +43,13 @@ Description
|
|||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
namespace Foam
|
||||
{
|
||||
namespace debug
|
||||
{
|
||||
|
||||
template<>
|
||||
const char*
|
||||
Foam::NamedEnum<Foam::debug::globalControlDictSwitchSet, 5>::names[] =
|
||||
Foam::NamedEnum
|
||||
<
|
||||
Foam::debug::globalControlDictSwitchSet,
|
||||
Foam::debug::DIM_GLOBAL_CONTROL_DICT_SWITCH_SET
|
||||
>::names[] =
|
||||
{
|
||||
"DebugSwitches",
|
||||
"InfoSwitches",
|
||||
|
@ -60,6 +59,13 @@ Foam::NamedEnum<Foam::debug::globalControlDictSwitchSet, 5>::names[] =
|
|||
};
|
||||
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
namespace Foam
|
||||
{
|
||||
namespace debug
|
||||
{
|
||||
|
||||
//! @cond ignoreDocumentation - local scope
|
||||
dictionary* controlDictPtr_(NULL);
|
||||
|
||||
|
|
Reference in a new issue