mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-16 14:31:59 +00:00
PathV2: Remove static StringRef ctors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150071 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f602040c49
commit
80fd2a1972
@ -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…
x
Reference in New Issue
Block a user