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/Time.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/Time.cpp')
-rw-r--r-- | cpp/src/IceUtil/Time.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/src/IceUtil/Time.cpp b/cpp/src/IceUtil/Time.cpp index 89b1c85eb8a..121208c4bdf 100644 --- a/cpp/src/IceUtil/Time.cpp +++ b/cpp/src/IceUtil/Time.cpp @@ -26,7 +26,7 @@ using namespace IceUtil; namespace { -static double frequency = -1.0; +double frequency = -1.0; // // Initialize the frequency @@ -53,9 +53,9 @@ public: } } }; -static InitializeFrequency frequencyInitializer; +InitializeFrequency frequencyInitializer; -}; +} #endif Time::Time() : |