From d3cf52153c30b8dd6ba89d261a66a736d250621e Mon Sep 17 00:00:00 2001 From: rachytski Date: Wed, 9 Jan 2013 19:19:28 +0300 Subject: [PATCH] added std/errno.hpp according to suggestion in code review. --- base/condition_posix.cpp | 3 +-- std/errno.hpp | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+), 2 deletions(-) create mode 100644 std/errno.hpp diff --git a/base/condition_posix.cpp b/base/condition_posix.cpp index 65df58ba7e..be679649b4 100644 --- a/base/condition_posix.cpp +++ b/base/condition_posix.cpp @@ -7,8 +7,7 @@ #include "../std/stdint.hpp" #include "../std/systime.hpp" - -#include +#include "../std/errno.hpp" #include diff --git a/std/errno.hpp b/std/errno.hpp new file mode 100644 index 0000000000..c4f23e6959 --- /dev/null +++ b/std/errno.hpp @@ -0,0 +1,19 @@ +#pragma once + +#include "common_defines.hpp" +#include "target_os.hpp" + +#ifdef new +#undef new +#endif + +// for errno +#ifdef OMIM_OS_WINDOWS + #include +#else + #include +#endif + +#ifdef DEBUG_NEW +#define new DEBUG_NEW +#endif