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:
a9a135b
)
Remove unnecessary explicit
author
Adam Nemet
<anemet@apple.com>
Thu, 29 Sep 2016 16:01:34 +0000
(16:01 +0000)
committer
Adam Nemet
<anemet@apple.com>
Thu, 29 Sep 2016 16:01:34 +0000
(16:01 +0000)
llvm-svn: 282722
llvm/include/llvm/IR/DiagnosticInfo.h
patch
|
blob
|
history
diff --git
a/llvm/include/llvm/IR/DiagnosticInfo.h
b/llvm/include/llvm/IR/DiagnosticInfo.h
index
ac4c4bd
..
c9d82a5
100644
(file)
--- a/
llvm/include/llvm/IR/DiagnosticInfo.h
+++ b/
llvm/include/llvm/IR/DiagnosticInfo.h
@@
-387,8
+387,8
@@
public:
std::string Val;
explicit Argument(StringRef Str = "") : Key("String"), Val(Str) {}
-
explicit
Argument(StringRef Key, Value *V) : Key(Key), Val(V->getName()) {}
-
explicit
Argument(StringRef Key, int N);
+ Argument(StringRef Key, Value *V) : Key(Key), Val(V->getName()) {}
+ Argument(StringRef Key, int N);
};
/// \p PassName is the name of the pass emitting this diagnostic. \p