diff options
author | lloyd <[email protected]> | 2007-05-31 04:14:56 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2007-05-31 04:14:56 +0000 |
commit | 305db323498adca6cc0d3c6272626e47742c0758 (patch) | |
tree | 28f4cd5cded10fdac0c17d56bec35de92442a298 /src/eng_base.cpp | |
parent | 09eb089712be0b0f2098c97cb76c427da1210ef5 (diff) |
On an assignment or initialization split across lines, put the = at the end
of the line rather than the start.
Diffstat (limited to 'src/eng_base.cpp')
-rw-r--r-- | src/eng_base.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eng_base.cpp b/src/eng_base.cpp index 2a2168c0b..a726fd762 100644 --- a/src/eng_base.cpp +++ b/src/eng_base.cpp @@ -45,8 +45,8 @@ class Algorithm_Cache_Impl : public Engine::Algorithm_Cache<T> ~Algorithm_Cache_Impl() { - typename std::map<std::string, T*>::iterator i - = mappings.begin(); + typename std::map<std::string, T*>::iterator i = mappings.begin(); + while(i != mappings.end()) { delete i->second; |