OSDN Git Service

2004-02-03 Paolo Carlini <pcarlini@suse.de>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / include / bits / stl_map.h
index 6cb0845..04876ba 100644 (file)
@@ -336,7 +336,7 @@ namespace __gnu_norm
        iterator __i = lower_bound(__k);
        // __i->first is greater than or equivalent to __k.
        if (__i == end() || key_comp()(__k, (*__i).first))
-        __i = insert(__i, value_type(__k, mapped_type()));
+          __i = insert(__i, value_type(__k, mapped_type()));
        return (*__i).second;
       }