From 32ea7504ef6d8cfe5b685a00d9d60741205b5479 Mon Sep 17 00:00:00 2001 From: Adam Nemet Date: Thu, 29 Sep 2016 16:01:34 +0000 Subject: [PATCH] Remove unnecessary explicit llvm-svn: 282722 --- llvm/include/llvm/IR/DiagnosticInfo.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/include/llvm/IR/DiagnosticInfo.h b/llvm/include/llvm/IR/DiagnosticInfo.h index ac4c4bd..c9d82a5 100644 --- 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 -- 2.7.4