aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/stl_util.h
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-06-15 23:23:49 +0000
committerlloyd <[email protected]>2010-06-15 23:23:49 +0000
commit76b57a7c4656f0f5759c34efe8bab664b49cd21d (patch)
tree04d4b4d871606e55bec9bddc8fcb57ddd238d21d /src/utils/stl_util.h
parentbbe5daf0647a2f0953f1d99272b4e8fbf8d3b6b5 (diff)
More Doxygen updates/fixes
Diffstat (limited to 'src/utils/stl_util.h')
-rw-r--r--src/utils/stl_util.h6
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>