diff --git a/lib/checkleakautovar.cpp b/lib/checkleakautovar.cpp index c482aa382..f35ab543d 100644 --- a/lib/checkleakautovar.cpp +++ b/lib/checkleakautovar.cpp @@ -31,12 +31,12 @@ #include //--------------------------------------------------------------------------- -const int DEALLOC = -1; -const int NOALLOC = 0; - // Register this check class (by creating a static instance of it) namespace { CheckLeakAutoVar instance; + + const int DEALLOC = -1; + const int NOALLOC = 0; } //---------------------------------------------------------------------------