aboutsummaryrefslogtreecommitdiff
path: root/libxsde/xsde/cxx/allocator.ixx
diff options
context:
space:
mode:
Diffstat (limited to 'libxsde/xsde/cxx/allocator.ixx')
-rw-r--r--libxsde/xsde/cxx/allocator.ixx27
1 files changed, 27 insertions, 0 deletions
diff --git a/libxsde/xsde/cxx/allocator.ixx b/libxsde/xsde/cxx/allocator.ixx
new file mode 100644
index 0000000..9f3d50b
--- /dev/null
+++ b/libxsde/xsde/cxx/allocator.ixx
@@ -0,0 +1,27 @@
+// file : xsde/cxx/allocator.ixx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2005-2010 Code Synthesis Tools CC
+// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
+
+#include <xsde/allocator.h>
+
+namespace xsde
+{
+ namespace cxx
+ {
+#ifndef XSDE_EXCEPTIONS
+ inline void*
+ alloc (size_t n)
+ {
+ return xsde_alloc (n);
+ }
+#endif
+
+ inline void
+ free (void* p)
+ {
+ if (p)
+ xsde_free (p);
+ }
+ }
+}