aboutsummaryrefslogtreecommitdiff
path: root/libxsde
diff options
context:
space:
mode:
Diffstat (limited to 'libxsde')
-rw-r--r--libxsde/xsde/cxx/stack.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/libxsde/xsde/cxx/stack.cxx b/libxsde/xsde/cxx/stack.cxx
index f0a1b66..775c88f 100644
--- a/libxsde/xsde/cxx/stack.cxx
+++ b/libxsde/xsde/cxx/stack.cxx
@@ -35,7 +35,7 @@ namespace xsde
memcpy (d, data_, (size_ - 1) * el_size_);
#ifndef XSDE_CUSTOM_ALLOCATOR
- operator delete data_;
+ operator delete (data_);
#else
cxx::free (data_);
#endif