Remove unnecessary explicit
authorAdam Nemet <anemet@apple.com>
Thu, 29 Sep 2016 16:01:34 +0000 (16:01 +0000)
committerAdam Nemet <anemet@apple.com>
Thu, 29 Sep 2016 16:01:34 +0000 (16:01 +0000)
llvm-svn: 282722

llvm/include/llvm/IR/DiagnosticInfo.h

index ac4c4bd..c9d82a5 100644 (file)
@@ -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