summaryrefslogtreecommitdiff
path: root/zen/stl_tools.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/stl_tools.h')
-rw-r--r--zen/stl_tools.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/stl_tools.h b/zen/stl_tools.h
index d00fc732..d2d4ee1a 100644
--- a/zen/stl_tools.h
+++ b/zen/stl_tools.h
@@ -80,7 +80,7 @@ void vector_append(V& vec, const W& vec2)
template <class V, class W> inline
void set_append(V& s, const W& s2)
{
- s.insert(s2.begin(), s2.end());
+ s.insert(s2.begin(), s2.end());
}
bgstack15