Remove unnecessary explicit

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@282722 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Adam Nemet 2016-09-29 16:01:34 +00:00
parent 7c5de022d5
commit 9155ed9923

View 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