aboutsummaryrefslogtreecommitdiffhomepage
path: root/function.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-03-01 14:56:34 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-03-01 14:56:34 -0800
commitfd4df6f9bb918d62ae31881230f2d5f8b09e129e (patch)
treebf1e86c4dae93eaec67d6f64d6587c30cdb672f3 /function.cpp
parent5d18d60e3b9f9f4d6e12f14e8c68b147429b9fb3 (diff)
Changed iterators from iter++ to ++iter
Large set of changes to history to ensure that histories from other sessions don't "bleed" into the current session
Diffstat (limited to 'function.cpp')
-rw-r--r--function.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/function.cpp b/function.cpp
index bcb0e0a4..45a0dd15 100644
--- a/function.cpp
+++ b/function.cpp
@@ -299,7 +299,7 @@ wcstring_list_t function_get_names( int get_hidden )
autoload_names( names, get_hidden );
function_map_t::const_iterator iter;
- for (iter = loaded_functions.begin(); iter != loaded_functions.end(); iter++) {
+ for (iter = loaded_functions.begin(); iter != loaded_functions.end(); ++iter) {
const wcstring &name = iter->first;
/* Maybe skip hidden */