mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 15:33:33 +00:00
Add a bool->StringRef c'tor to StringRef.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187166 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
36e6ae6106
commit
fb5b3eaacb
@ -90,6 +90,10 @@ namespace llvm {
|
||||
/*implicit*/ StringRef(const std::string &Str)
|
||||
: Data(Str.data()), Length(Str.length()) {}
|
||||
|
||||
/// Construct a string ref from a boolean.
|
||||
explicit StringRef(bool B)
|
||||
: Data(B ? "true" : "false"), Length(::strlen(Data)) {}
|
||||
|
||||
/// @}
|
||||
/// @name Iterators
|
||||
/// @{
|
||||
|
Loading…
Reference in New Issue
Block a user