]> www.ginac.de Git - ginac.git/commitdiff
Fixed include of stdint.h (parser.cpp needs the header as well).
authorJens Vollinga <jensv@nikhef.nl>
Sun, 9 Aug 2009 21:27:10 +0000 (23:27 +0200)
committerJens Vollinga <jensv@nikhef.nl>
Sun, 9 Aug 2009 21:27:10 +0000 (23:27 +0200)
ginac/parser/default_reader.tpl
ginac/parser/parse_context.h

index 2018e04a0660e66b9faf2fe15f1c59b6e09bbf37..9e8c1a04e24646716597cff890efdcc4c53e10cc 100644 (file)
@@ -19,12 +19,6 @@ COMMENT a part of GiNaC parser -- construct functions from a byte stream.
 #include "power.h"
 #include "operators.h"
 #include "inifcns.h"
 #include "power.h"
 #include "operators.h"
 #include "inifcns.h"
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-#ifdef HAVE_STDINT_H
-#include <stdint.h> // for uintptr_t
-#endif
 
 namespace GiNaC
 {
 
 namespace GiNaC
 {
@@ -87,5 +81,5 @@ const prototype_table& get_default_reader()
        }
        return reader;
 }
        }
        return reader;
 }
-} // namespace GiNaC
 
 
+} // namespace GiNaC
index 47b150c3638d3e8d7bbfc09b49b4e614bc971a9f..37e08aa0d0030163ee9d61dc77f7aac00454ae90 100644 (file)
 #include <map>
 #include <string>
 #include <utility>
 #include <map>
 #include <string>
 #include <utility>
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+#ifdef HAVE_STDINT_H
+#include <stdint.h> // for uintptr_t
+#endif
 
 namespace GiNaC {
 
 
 namespace GiNaC {