1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

PathV2: Remove static StringRef ctors.

llvm-svn: 150071
This commit is contained in:
Benjamin Kramer 2012-02-08 13:13:47 +00:00
parent 87a6e08d3a
commit 74f9379254

View File

@ -24,11 +24,11 @@ namespace {
using llvm::sys::path::is_separator;
#ifdef LLVM_ON_WIN32
const StringRef separators = "\\/";
const char prefered_separator = '\\';
const char *separators = "\\/";
const char prefered_separator = '\\';
#else
const StringRef separators = "/";
const char prefered_separator = '/';
const char separators = '/';
const char prefered_separator = '/';
#endif
const llvm::error_code success;