Remove unnecessary explicit

llvm-svn: 282722
This commit is contained in:
Adam Nemet 2016-09-29 16:01:34 +00:00
parent a9a135b4f5
commit 32ea7504ef
1 changed files with 2 additions and 2 deletions

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