summaryrefslogtreecommitdiffstats
path: root/source/Concept/Framework/tools.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Concept/Framework/tools.h')
-rw-r--r--source/Concept/Framework/tools.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/Concept/Framework/tools.h b/source/Concept/Framework/tools.h
index a3c12de..9cd38f2 100644
--- a/source/Concept/Framework/tools.h
+++ b/source/Concept/Framework/tools.h
@@ -1,7 +1,9 @@
#ifndef _TOOLS_H
#define _TOOLS_H
-void* operator new(size_t sz);
-void operator delete(void* p);
+#ifndef __cplusplus
+ void* operator new(size_t sz);
+ void operator delete(void* p);
+#endif
#endif