about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--001help.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/001help.cc b/001help.cc
index 814bdde7..188862b0 100644
--- a/001help.cc
+++ b/001help.cc
@@ -219,6 +219,7 @@ template<typename T> typename T::mapped_type const& get(const T& map, typename T
   return iter->second;
 }
 template<typename T> typename T::mapped_type const& put(T& map, typename T::key_type const& key, typename T::mapped_type const& value) {
+  // requires value to have a zero-arg (default) constructor
   map[key] = value;
   return map[key];
 }