Changed DIR_SEP for WIN32 from "\\\\" (double backslashes) to

"\\" (single backslash).
This commit is contained in:
2009-07-27 19:31:24 +00:00
parent 52f639277b
commit fcba277a83

View File

@@ -44,7 +44,7 @@ namespace Config {
// Directory separators
# ifdef WIN32
static const string DIR_SEP("\\\\");
static const string DIR_SEP("\\");
static const string PATH_SEP(";");
# else
static const string DIR_SEP("/");