diff options
author | Jose <jose@zeroc.com> | 2009-01-14 20:21:14 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2009-01-14 20:21:14 +0100 |
commit | 7da5b68416d63f8bb90a1f9d666574d339b6314c (patch) | |
tree | ac8ad23485c684059a441dbfa620774c9f3fe39f /cpp/src/slice2cpp/Gen.cpp | |
parent | Fix 3653 - gcc4 error compiling cpp/demo/book/freeze_filesystem' (diff) | |
download | ice-7da5b68416d63f8bb90a1f9d666574d339b6314c.tar.bz2 ice-7da5b68416d63f8bb90a1f9d666574d339b6314c.tar.xz ice-7da5b68416d63f8bb90a1f9d666574d339b6314c.zip |
Fix 3652 - string.h need to be included to use strerror with gcc >= 4.3.2
Diffstat (limited to 'cpp/src/slice2cpp/Gen.cpp')
-rw-r--r-- | cpp/src/slice2cpp/Gen.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/slice2cpp/Gen.cpp b/cpp/src/slice2cpp/Gen.cpp index 0c1731b684f..d442b2a7586 100644 --- a/cpp/src/slice2cpp/Gen.cpp +++ b/cpp/src/slice2cpp/Gen.cpp @@ -17,7 +17,9 @@ #include <Slice/FileTracker.h> #include <limits> + #include <sys/stat.h> +#include <string.h> using namespace std; using namespace Slice; |