diff options
Diffstat (limited to 'cpp/src/slice2javae/Main.cpp')
-rw-r--r-- | cpp/src/slice2javae/Main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2javae/Main.cpp b/cpp/src/slice2javae/Main.cpp index a431e9f5865..a06269a78bc 100644 --- a/cpp/src/slice2javae/Main.cpp +++ b/cpp/src/slice2javae/Main.cpp @@ -98,7 +98,7 @@ main(int argc, char* argv[]) vector<string> includePaths = opts.argVec("I"); for(i = includePaths.begin(); i != includePaths.end(); ++i) { - cppArgs += " -I" + Preprocessor::addQuotes(*i); + cppArgs += " -I" + Preprocessor::normalizeIncludePath(*i); } bool preprocess = opts.isSet("E"); |