aboutsummaryrefslogtreecommitdiff
path: root/libxsde
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-12-15 08:56:17 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-12-15 08:56:17 +0200
commit252f5c6d0a5912162e355b871cf6e150b4c64f06 (patch)
treed97fc1d815355a30122a5f88c32d03258f35cec3 /libxsde
parent4e6dcdbad67931dbae14e01dc9d069c705a31b4f (diff)
Initialize the callback function in serializer map
Diffstat (limited to 'libxsde')
-rw-r--r--libxsde/xsde/cxx/serializer/substitution-map.ixx2
1 files changed, 1 insertions, 1 deletions
diff --git a/libxsde/xsde/cxx/serializer/substitution-map.ixx b/libxsde/xsde/cxx/serializer/substitution-map.ixx
index 6dbd951..746618a 100644
--- a/libxsde/xsde/cxx/serializer/substitution-map.ixx
+++ b/libxsde/xsde/cxx/serializer/substitution-map.ixx
@@ -11,7 +11,7 @@ namespace xsde
{
inline substitution_map::
substitution_map (size_t buckets)
- : hashmap (buckets, sizeof (hashmap*))
+ : hashmap (buckets, sizeof (hashmap*)), callback_ (0)
{
}