]> www.ginac.de Git - ginac.git/blobdiff - ginac/parser/parse_context.h
Quick and dirty bug fix for the parser to read GiNaC::lst again.
[ginac.git] / ginac / parser / parse_context.h
index f10425289ff7f895656f71271f4c2eab914029af..60151fd37988af0538f6b000bd50285930ee8d7d 100644 (file)
@@ -88,7 +88,20 @@ typedef ex (*reader_func)(const exvector& args);
  *       function pointer!! The unsigned has to correspond to the serial number of
  *       the defined GiNaC function.
  */
  *       function pointer!! The unsigned has to correspond to the serial number of
  *       the defined GiNaC function.
  */
-typedef std::map<prototype, reader_func> prototype_table;
+class PrototypeLess
+{
+public:
+       bool operator()(const prototype& p1, const prototype& p2) const
+       {
+               int s = p1.first.compare(p2.first);
+               if (s == 0) {
+                       if ((p1.second == 0) || (p2.second == 0)) return false;
+                       return p1.second < p2.second;
+               }
+               return s < 0;
+       }
+};
+typedef std::map<prototype, reader_func, PrototypeLess> prototype_table;
 
 /**
  * Default prototype table.
 
 /**
  * Default prototype table.