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
diff options
context:
space:
mode:
authorvng <viktor.govako@gmail.com>2012-03-06 00:01:59 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:36:26 +0300
commit070a3ddc504b9c5a3ea8a606d6a3d81dccdd3664 (patch)
tree78e571a9e6ff9b221312de190b6d5ebf8287b899 /geometry
parent63ba1640e14ed571a23d5e0212630565794bcffb (diff)
Fix warning.
Diffstat (limited to 'geometry')
-rw-r--r--geometry/robust_orientation.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/geometry/robust_orientation.cpp b/geometry/robust_orientation.cpp
index b0595551fa..400833b914 100644
--- a/geometry/robust_orientation.cpp
+++ b/geometry/robust_orientation.cpp
@@ -2,6 +2,8 @@
#include "robust_orientation.hpp"
+#include "../base/macros.hpp"
+
extern "C"
{
#include "../3party/robust/predicates.c"
@@ -19,6 +21,7 @@ namespace m2 { namespace robust
{
static bool res = Init();
ASSERT_EQUAL ( res, true, () );
+ UNUSED_VALUE(res);
double a[] = { p1.x, p1.y };
double b[] = { p2.x, p2.y };