diff --git a/docs/CPP_STYLE.md b/docs/CPP_STYLE.md index 17b9e76f0e..b2646b9125 100644 --- a/docs/CPP_STYLE.md +++ b/docs/CPP_STYLE.md @@ -206,7 +206,7 @@ v = w * (x + z); ### Some useful macros: -- `#ifdef DEBUG | RELEASE | OMIM_PRODUCTION` +- `#ifdef DEBUG | RELEASE` - `#ifdef OMIM_OS_ANDROID | OMIM_OS_IPHONE | OMIM_OS_MAC` (and some other useful OS-related macros, see `std/target_os.hpp`) - Use `ASSERT(expression, (out message))` and `ASSERT_XXXXXX` macros often to check code validity in DEBUG builds - Use `CHECK(expression, (out message))` and `CHECK_XXXXXX` macros to check code validity in all builds diff --git a/platform/platform_win.cpp b/platform/platform_win.cpp index c9dc2dc54c..14c36cad51 100644 --- a/platform/platform_win.cpp +++ b/platform/platform_win.cpp @@ -57,7 +57,7 @@ Platform::Platform() m_resourcesDir = path + "\\data\\"; else { -#ifndef OMIM_PRODUCTION +#ifndef RELEASE path.erase(path.find_last_of('\\')); path.erase(path.find_last_of('\\')); if (IsFileExistsByFullPath(path + "\\data\\")) diff --git a/platform/socket_apple.mm b/platform/socket_apple.mm index 92f17cd25b..f9ec11caaa 100644 --- a/platform/socket_apple.mm +++ b/platform/socket_apple.mm @@ -34,7 +34,7 @@ &writeStream); NSDictionary * settings = @{ -#ifndef OMIM_PRODUCTION +#ifndef RELEASE (id)kCFStreamSSLValidatesCertificateChain : @NO, #endif (id)kCFStreamSSLLevel : (id)kCFStreamSocketSecurityLevelNegotiatedSSL @@ -101,7 +101,7 @@ else { LOG(LERROR, ("An error has occurred on the read stream.")); -#ifdef OMIM_PRODUCTION +#ifdef RELEASE LOG(LERROR, (self.inputStream.streamError)); #else NSLog(@"%@", self.inputStream.streamError); @@ -138,7 +138,7 @@ else { LOG(LERROR, ("An error has occurred on the write stream.")); -#ifdef OMIM_PRODUCTION +#ifdef RELEASE LOG(LERROR, (self.outputStream.streamError)); #else NSLog(@"%@", self.outputStream.streamError); diff --git a/xcode/common-release.xcconfig b/xcode/common-release.xcconfig index b3d569692e..980d367569 100644 --- a/xcode/common-release.xcconfig +++ b/xcode/common-release.xcconfig @@ -4,7 +4,7 @@ COPY_PHASE_STRIP = YES ENABLE_NS_ASSERTIONS = NO ENABLE_TESTABILITY = NO GCC_OPTIMIZATION_LEVEL = 3 -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) RELEASE _RELEASE NDEBUG OMIM_PRODUCTION HAVE_PTHREAD +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) RELEASE _RELEASE NDEBUG HAVE_PTHREAD GCC_UNROLL_LOOPS = YES MTL_ENABLE_DEBUG_INFO = NO NS_BLOCK_ASSERTIONS = NO