]> www.ginac.de Git - ginac.git/blobdiff - ginac/hash_map.h
obvious patch from Chris Dams
[ginac.git] / ginac / hash_map.h
index df5a674b5f51dc62c9e702fdd744dbef8951a575..a82bddeea77293d5d1abe0693352203f38f9a649 100644 (file)
@@ -3,7 +3,7 @@
  *  Replacement for map<> using hash tables. */
 
 /*
- *  GiNaC Copyright (C) 1999-2003 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2004 Johannes Gutenberg University Mainz, Germany
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -337,7 +337,7 @@ public:
 
        iterator insert(iterator pos, const value_type &x)
        {
-               return insert(val).first;
+               return insert(x).first;
        }
 
        template <class InputIterator>