]> git.lyx.org Git - lyx.git/blobdiff - src/support/os_win32.cpp
cosmetics
[lyx.git] / src / support / os_win32.cpp
index 4beaaa16e446c46e2e41f9c72bf3ff37666fa1f1..cddb497c5f529139166f1410dacfee5a1b3cd762 100644 (file)
@@ -201,7 +201,7 @@ static string const get_long_path(string const & short_path)
        // GetLongPathName needs the path in file system encoding.
        // We can use to_local8bit, since file system encoding and the
        // local 8 bit encoding are identical on windows.
-       std::vector<char> long_path(MAX_PATH);
+       vector<char> long_path(MAX_PATH);
        DWORD result = GetLongPathName(to_local8bit(from_utf8(short_path)).c_str(),
                                       &long_path[0], long_path.size());