diff options
author | Mu Qiao <qiaomuf@gentoo.org> | 2011-07-27 10:40:07 +0800 |
---|---|---|
committer | Mu Qiao <qiaomuf@gentoo.org> | 2011-08-02 15:52:18 +0800 |
commit | 3d46bb0d6f78c85ab50e19e9939dd341f98f79fe (patch) | |
tree | 874db3e29b6cd124f5a860db6bb0fd40e97b1256 | |
parent | Parser: make the lexer code thread-safe (diff) | |
download | libbash-3d46bb0d6f78c85ab50e19e9939dd341f98f79fe.tar.gz libbash-3d46bb0d6f78c85ab50e19e9939dd341f98f79fe.tar.bz2 libbash-3d46bb0d6f78c85ab50e19e9939dd341f98f79fe.zip |
Parser: put includes to more proper place
-rw-r--r-- | bashast/bashast.g | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bashast/bashast.g b/bashast/bashast.g index bb70aec..2a0b23a 100644 --- a/bashast/bashast.g +++ b/bashast/bashast.g @@ -157,7 +157,8 @@ tokens{ @includes { C_INCLUDE #include <iostream> C_INCLUDE #include <string> - +} +@postinclude { C_INCLUDE #include <boost/numeric/conversion/cast.hpp> C_INCLUDE #include "core/exceptions.h" |