]> www.ginac.de Git - ginac.git/blobdiff - ginac/hash_map.h
* Added resultant() function (by Ralf Stephan <ralf@ark.in-berlin.de>).
[ginac.git] / ginac / hash_map.h
index 13facc415c403e892121a14de38a2dc8ec1f9617..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(this->val).first;
+               return insert(x).first;
        }
 
        template <class InputIterator>