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/slice2rb/Main.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/slice2rb/Main.cpp')
-rw-r--r-- | cpp/src/slice2rb/Main.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/src/slice2rb/Main.cpp b/cpp/src/slice2rb/Main.cpp index d5f21dc3037..2cdd6ec4982 100644 --- a/cpp/src/slice2rb/Main.cpp +++ b/cpp/src/slice2rb/Main.cpp @@ -28,6 +28,8 @@ #include <unistd.h> #endif +#include <string.h> + using namespace std; using namespace Slice; using namespace Slice::Ruby; |