From 7ba5b1fa9d9849182b19aebe5bad1570fb82452b Mon Sep 17 00:00:00 2001 From: Jose Date: Fri, 6 Jun 2014 16:33:11 +0200 Subject: Fixed (ICE-4894) - Native SSL implementation for OS X --- cpp/src/IceUtil/FileUtil.cpp | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'cpp/src/IceUtil/FileUtil.cpp') diff --git a/cpp/src/IceUtil/FileUtil.cpp b/cpp/src/IceUtil/FileUtil.cpp index 89379f5f3b6..250abf105ea 100644 --- a/cpp/src/IceUtil/FileUtil.cpp +++ b/cpp/src/IceUtil/FileUtil.cpp @@ -23,6 +23,17 @@ using namespace std; +namespace IceUtilInternal +{ +#ifdef _WIN32 +const string pathsep = ";"; +const string separator = "\\"; +#else +const string pathsep = ":"; +const string separator = "/"; +#endif +} + // // Determine if path is an absolute path // -- cgit v1.2.3