Browse Source

FEATURE - hook-based git file reading

Another attempt to fix compile errors/warnings that showed up on vc++ compiler,
due to rather strange c++ handling of a trailing \ in a comment.

Signed-off-by: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 13 years ago
parent
commit
16aa156463
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/jlib/jfile.hpp

+ 1 - 1
system/jlib/jfile.hpp

@@ -507,7 +507,7 @@ inline StringBuffer &removeTrailingPathSepChar(StringBuffer &path)
     {
 #ifdef _WIN32
     // In addition to not removing / if it's the only char in the path, you should not remove it the path
-    // is of the form c:\
+    // is of the form "c:\"
         if (path.length()>3 || path.charAt(1) != ':')
 #endif
             path.remove(path.length()-1, 1);