projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
107db55
)
[TableGen] Make StringInit constructor take a StringRef instead of const std::string...
author
Craig Topper
<craig.topper@gmail.com>
Sun, 9 Aug 2015 22:03:04 +0000
(22:03 +0000)
committer
Craig Topper
<craig.topper@gmail.com>
Sun, 9 Aug 2015 22:03:04 +0000
(22:03 +0000)
llvm-svn: 244426
llvm/include/llvm/TableGen/Record.h
patch
|
blob
|
history
diff --git
a/llvm/include/llvm/TableGen/Record.h
b/llvm/include/llvm/TableGen/Record.h
index
b4642c9
..
67fee43
100644
(file)
--- a/
llvm/include/llvm/TableGen/Record.h
+++ b/
llvm/include/llvm/TableGen/Record.h
@@
-547,7
+547,7
@@
public:
class StringInit : public TypedInit {
std::string Value;
- explicit StringInit(
const std::string &
V)
+ explicit StringInit(
StringRef
V)
: TypedInit(IK_StringInit, StringRecTy::get()), Value(V) {}
StringInit(const StringInit &Other) = delete;