summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2017-03-02 20:37:21 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2017-03-02 20:37:21 +0900
commit2d858cab3dbdb3f61d07f3850903702456909afc (patch)
tree28f2a1eb303c92efec6cb026ed006a6ecb8e24ca /include
parent1ab7e7e4dce9f53b3d2ed576a6d69d8dbb013166 (diff)
downloadmruby-2d858cab3dbdb3f61d07f3850903702456909afc.tar.gz
mruby-2d858cab3dbdb3f61d07f3850903702456909afc.zip
Use C++ ABI only when MRB_ENABLE_CXX_ABI is set; ref #3470
Diffstat (limited to 'include')
-rw-r--r--include/mruby/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby/common.h b/include/mruby/common.h
index 338044c2f..160639922 100644
--- a/include/mruby/common.h
+++ b/include/mruby/common.h
@@ -9,7 +9,7 @@
#ifdef __cplusplus
-#ifdef MRB_ENABLE_CXX_EXCEPTION
+#ifdef MRB_ENABLE_CXX_ABI
#define MRB_BEGIN_DECL
#define MRB_END_DECL
#else