From dec9bd485c4d51c6ca7672cb67c74b2e8403e49a Mon Sep 17 00:00:00 2001 From: Ilya Zverev Date: Fri, 3 Jul 2015 13:25:08 +0300 Subject: [PATCH] [testing] Move g_testingOptions to a private namespace --- testing/testingmain.cpp | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/testing/testingmain.cpp b/testing/testingmain.cpp index 845fd38a4f..dfb9c168f9 100644 --- a/testing/testingmain.cpp +++ b/testing/testingmain.cpp @@ -28,16 +28,10 @@ #endif #endif -CommandLineOptions g_testingOptions; - -CommandLineOptions const & GetTestingOptions() -{ - return g_testingOptions; -} - namespace { bool g_bLastTestOK = true; +CommandLineOptions g_testingOptions; int const kOptionFieldWidth = 32; char const kFilterOption[] = "--filter="; @@ -97,6 +91,11 @@ void ParseOptions(int argc, char * argv[], CommandLineOptions & options) } } // namespace +CommandLineOptions const & GetTestingOptions() +{ + return g_testingOptions; +} + int main(int argc, char * argv[]) { #ifdef OMIM_UNIT_TEST_WITH_QT_EVENT_LOOP