diff options
author | Jose <jose@zeroc.com> | 2011-12-20 12:28:20 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2011-12-20 12:28:20 +0100 |
commit | 4990a34b535fab67aad1642a5fb5d5ec0a10212b (patch) | |
tree | c125a0b826b1323f8f908185d1a51a415504e130 /cpp/src/IceUtil/CtrlCHandler.cpp | |
parent | Glacier2 sessionHelper minor fix (diff) | |
download | ice-4990a34b535fab67aad1642a5fb5d5ec0a10212b.tar.bz2 ice-4990a34b535fab67aad1642a5fb5d5ec0a10212b.tar.xz ice-4990a34b535fab67aad1642a5fb5d5ec0a10212b.zip |
ICE-3793 replace static with anon namespaces
Diffstat (limited to 'cpp/src/IceUtil/CtrlCHandler.cpp')
-rw-r--r-- | cpp/src/IceUtil/CtrlCHandler.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/cpp/src/IceUtil/CtrlCHandler.cpp b/cpp/src/IceUtil/CtrlCHandler.cpp index f4d150cc1fc..1141774f5bb 100644 --- a/cpp/src/IceUtil/CtrlCHandler.cpp +++ b/cpp/src/IceUtil/CtrlCHandler.cpp @@ -55,7 +55,12 @@ CtrlCHandlerException::CtrlCHandlerException(const char* file, int line) : { } -static const char* ctrlCHandlerName = "IceUtil::CtrlCHandlerException"; +namespace +{ + +const char* ctrlCHandlerName = "IceUtil::CtrlCHandlerException"; + +} string CtrlCHandlerException::ice_name() const |