aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-10-19 09:46:11 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-10-19 09:46:11 +0200
commit9c79021f1625ef2e42cba826bf89491af3dd2a97 (patch)
tree439ba7a82c84f9f136ce542ae53d73405050a0a9 /examples
parentb312b9f090475f3dd76994706260cb83ab162a8a (diff)
Remove return statement from void function
Diffstat (limited to 'examples')
-rw-r--r--examples/cxx/hybrid/allocator/driver.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/cxx/hybrid/allocator/driver.cxx b/examples/cxx/hybrid/allocator/driver.cxx
index a3d91a8..1e943ee 100644
--- a/examples/cxx/hybrid/allocator/driver.cxx
+++ b/examples/cxx/hybrid/allocator/driver.cxx
@@ -39,7 +39,7 @@ xsde_realloc (void* p, size_t n)
extern "C" void
xsde_free (void* p)
{
- return xsde_arena->free (p);
+ xsde_arena->free (p);
}
//