Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
authorAlex Zolotarev <deathbaba@gmail.com>2012-12-16 10:58:36 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:47:57 +0300
commitfc00349a4de4d6199c0028067bf157617a5221dd (patch)
tree3020b3f76035449065ae031040c93a48ad12abdd /base
parent460a311d50e3a1b2f393ff079cb957ca8c983883 (diff)
[win] Fixed some compilation errors
Diffstat (limited to 'base')
-rw-r--r--base/object_tracker.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/object_tracker.cpp b/base/object_tracker.cpp
index 3ba5127e23..9b6ed574af 100644
--- a/base/object_tracker.cpp
+++ b/base/object_tracker.cpp
@@ -68,8 +68,8 @@ void BreakIntoDebugger()
{
/// @todo Probably we can make it more simple (like std::terminate).
-#ifdef OMIM_OS_WINDOWS
- __debugbreak();
+#if defined(OMIM_OS_WINDOWS)
+ DebugBreak();
#else
kill(getpid(), SIGINT);
#endif