diff options
author | Miro Hrončok <miro@hroncok.cz> | 2013-06-19 18:09:44 (GMT) |
---|---|---|
committer | Miro Hrončok <miro@hroncok.cz> | 2013-06-19 18:09:44 (GMT) |
commit | 7870d9c15a434f8b9b8519450b42ecac7d59caa9 (patch) | |
tree | 7c52762ba4dfdc788ea061ed6887a4fb7b253d9b | |
parent | 6c7d386a3338039416ced323bf1aa75edbb43d19 (diff) |
Added missing include stdint.h to work with gcc 4.8.1
Without this include, this was not possible to build with gcc 4.8.1:
Build log (without this commit): http://kojipkgs.fedoraproject.org//work/tasks/1370/5521370/build.log
-rw-r--r-- | src/dxfdim.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dxfdim.cc b/src/dxfdim.cc index a241b87..8f55a2f 100644 --- a/src/dxfdim.cc +++ b/src/dxfdim.cc @@ -36,6 +36,8 @@ #include "mathc99.h" #include <sstream> +#include <stdint.h> + #include <boost/filesystem.hpp> boost::unordered_map<std::string,Value> dxf_dim_cache; boost::unordered_map<std::string,Value> dxf_cross_cache; |