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

github.com/thirdpin/libopencm3_cpp_extensions.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Lisin <d.lisin@thirdpin.ru>2017-09-12 17:23:49 +0300
committerDmitriy Lisin <d.lisin@thirdpin.ru>2017-09-12 17:23:49 +0300
commit54df050c984d4f296220d732045b63e4ba290aba (patch)
tree5f18d5867a3819660a19a7603df194cf41950938
parent8d54c7949223b161a24b09331d547f76675eecba (diff)
FIX: Missing semicolon
-rw-r--r--private/assert.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/private/assert.h b/private/assert.h
index 970bc91..b0ecf04 100644
--- a/private/assert.h
+++ b/private/assert.h
@@ -10,7 +10,7 @@
#if CM3CPP_ENABLE_IMPLISIT_DESTRUCTOR_CALLS == 1
#define CM3CPP_EXPLISIT_DESTRUCTOR(c) ~c() = default;
#else
-#define CM3CPP_EXPLISIT_DESTRUCTOR(c) ~c() { CM3CPP_ASSERT(false) }
+#define CM3CPP_EXPLISIT_DESTRUCTOR(c) ~c() { CM3CPP_ASSERT(false); }
#endif
#endif /* CM3CPP_ASSERT_H_ */