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:
parent
87a6e08d3a
commit
74f9379254
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user