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:
authorMaxim Pimenov <m@maps.me>2018-11-28 13:04:56 +0300
committerRoman Kuznetsov <r.kuznetsow@gmail.com>2018-11-30 16:01:49 +0300
commit5d5af46d48bf77f3632c9b039f7ce62e2a2904d5 (patch)
tree97acd4fbbacc61760489fe54bcf571b3835948e4 /geometry
parent2da498b417b254a853543f68ecfc99a611cce1a0 (diff)
[base] Renamed CHECK_SWITCH to UNREACHABLE.
Diffstat (limited to 'geometry')
-rw-r--r--geometry/line2d.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/geometry/line2d.cpp b/geometry/line2d.cpp
index d0074d37b2..e11ce3bf04 100644
--- a/geometry/line2d.cpp
+++ b/geometry/line2d.cpp
@@ -61,7 +61,7 @@ string DebugPrint(LineIntersector::Result::Type type)
case Type::One: return "One";
case Type::Infinity: return "Infinity";
}
- CHECK_SWITCH();
+ UNREACHABLE();
}
string DebugPrint(LineIntersector::Result const & result)