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/slice2html/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/slice2html/Gen.cpp')
-rw-r--r-- | cpp/src/slice2html/Gen.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/slice2html/Gen.cpp b/cpp/src/slice2html/Gen.cpp index f02ef04b75f..65149c2581c 100644 --- a/cpp/src/slice2html/Gen.cpp +++ b/cpp/src/slice2html/Gen.cpp @@ -29,6 +29,8 @@ # include <iterator> #endif +#include <string.h> + using namespace std; using namespace Slice; using namespace IceUtil; |