aboutsummaryrefslogtreecommitdiffhomepage
path: root/path.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 /path.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 'path.cpp')
-rw-r--r--path.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/path.cpp b/path.cpp
index a7cd91ec..73b82b3f 100644
--- a/path.cpp
+++ b/path.cpp
@@ -404,7 +404,7 @@ wchar_t *path_allocate_cdpath( const wchar_t *dir, const wchar_t *wd )
free( path_cpy );
}
- for (wcstring_list_t::const_iterator iter = paths.begin(); iter != paths.end(); iter++) {
+ for (wcstring_list_t::const_iterator iter = paths.begin(); iter != paths.end(); ++iter) {
struct stat buf;
const wcstring &dir = *iter;
if( wstat( dir, &buf ) == 0 )