diff options
Diffstat (limited to 'src/utils/stl_util.h')
-rw-r--r-- | src/utils/stl_util.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/utils/stl_util.h b/src/utils/stl_util.h index 18c8b149b..dddb48f12 100644 --- a/src/utils/stl_util.h +++ b/src/utils/stl_util.h @@ -52,7 +52,7 @@ inline R search_map(const std::map<K, V>& mapping, const K& key, return found_result; } -/* +/** * Function adaptor for delete operation */ template<class T> @@ -62,7 +62,7 @@ class del_fun : public std::unary_function<T, void> void operator()(T* ptr) { delete ptr; } }; -/* +/** * Delete the second half of a pair of objects */ template<typename Pair> @@ -71,7 +71,7 @@ void delete2nd(Pair& pair) delete pair.second; } -/* +/** * Insert a key/value pair into a multimap */ template<typename K, typename V> |