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:
authorLev Dragunov <l.dragunov@corp.mail.ru>2015-06-01 14:38:56 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:51:34 +0300
commit385061cb9165dddab490e1e3882fa91fb92443e9 (patch)
tree5a3cd21f75e133feada762aa1025fd599a32ddfb /base
parent893231c30930890ddb29c251af263692e53d00cc (diff)
Extract macros NOTIMPLEMENTED and PR fixes
Diffstat (limited to 'base')
-rw-r--r--base/macros.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/base/macros.hpp b/base/macros.hpp
index d3be701d28..360945ba36 100644
--- a/base/macros.hpp
+++ b/base/macros.hpp
@@ -73,6 +73,8 @@ private: \
className & operator=(const className &) = delete; \
className & operator=(className &&) = delete;
+#define NOTIMPLEMENTED() ASSERT(false, ("Function", __func__, "is not implemented!"));
+
#if defined(__GNUC__)
#define WARN_UNUSED_RESULT __attribute__((warn_unused_result))
#else