]> 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)
committerAlexei Sheplyakov <Alexei.Sheplyakov@gmail.com>
Thu, 9 Dec 2010 18:51:19 +0000 (20:51 +0200)
ginac/parser/default_reader.tpl
ginac/parser/parser.cpp

index 2018e04a0660e66b9faf2fe15f1c59b6e09bbf37..81f89bf49788fc1811133e5d1b9b9c4d18ad5bd3 100644 (file)
@@ -22,6 +22,7 @@ COMMENT a part of GiNaC parser -- construct functions from a byte stream.
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
+
 #ifdef HAVE_STDINT_H
 #include <stdint.h> // for uintptr_t
 #endif
@@ -87,5 +88,5 @@ const prototype_table& get_default_reader()
        }
        return reader;
 }
-} // namespace GiNaC
 
+} // namespace GiNaC
index 36ea7b14ec18b695e14f273e65bbe8943c0e2cb2..a3284fa4a6dd613fa6311073b3013047422b6b89 100644 (file)
 #include "mul.h"
 #include "constant.h"
 #include "function.h"
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
 
+#ifdef HAVE_STDINT_H
+#include <stdint.h> // for uintptr_t
+#endif
 #include <sstream>
 #include <stdexcept>