git://www.ginac.de
/
ginac.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1d0ab62
)
Added include for cstdio header.
author
Jens Vollinga
<jensv@nikhef.nl>
Fri, 24 Apr 2009 21:37:44 +0000
(23:37 +0200)
committer
Richard Kreckel
<kreckel@ginac.de>
Sat, 2 May 2009 21:36:31 +0000
(23:36 +0200)
gcc 4.0 does not include cstdio as part of other headers like string
anymore. As a result, gcc 4.0 complained about EOF being undefined.
ginac/parser/lexer.cpp
patch
|
blob
|
history
diff --git
a/ginac/parser/lexer.cpp
b/ginac/parser/lexer.cpp
index
050c85f
..
1cc2f49
100644
(file)
--- a/
ginac/parser/lexer.cpp
+++ b/
ginac/parser/lexer.cpp
@@
-26,6
+26,7
@@
#include <iostream>
#include <sstream>
#include <string>
+#include <cstdio>
namespace GiNaC {