Pulled NameEnum outside of debug namespace

This commit is contained in:
Hrvoje Jasak 2015-08-06 19:04:40 +01:00 committed by Dominik Christ
parent 8a09fd30a0
commit 4762fc42a3

View file

@ -43,14 +43,13 @@ Description
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
namespace debug
{
template<> template<>
const char* const char*
Foam::NamedEnum<Foam::debug::globalControlDictSwitchSet, 5>::names[] = Foam::NamedEnum
<
Foam::debug::globalControlDictSwitchSet,
Foam::debug::DIM_GLOBAL_CONTROL_DICT_SWITCH_SET
>::names[] =
{ {
"DebugSwitches", "DebugSwitches",
"InfoSwitches", "InfoSwitches",
@ -60,6 +59,13 @@ Foam::NamedEnum<Foam::debug::globalControlDictSwitchSet, 5>::names[] =
}; };
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
namespace debug
{
//! @cond ignoreDocumentation - local scope //! @cond ignoreDocumentation - local scope
dictionary* controlDictPtr_(NULL); dictionary* controlDictPtr_(NULL);