diff options
author | Rui Ueyama <ruiu@google.com> | 2013-11-17 22:05:24 +0000 |
---|---|---|
committer | Rui Ueyama <ruiu@google.com> | 2013-11-17 22:05:24 +0000 |
commit | f45198b4bf50bbe522caa88dd4e2fdb302d37693 (patch) | |
tree | 12e32001801661a4f4f1cfae8ea3ccc6a5669133 | |
parent | 2c8d5ec14ccec01afcae93f40d5d7855373ad46c (diff) | |
download | bcm5719-llvm-f45198b4bf50bbe522caa88dd4e2fdb302d37693.tar.gz bcm5719-llvm-f45198b4bf50bbe522caa88dd4e2fdb302d37693.zip |
Remove superfluous "explicit" keyword.
llvm-svn: 194982
-rw-r--r-- | lld/include/lld/ReaderWriter/Simple.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/include/lld/ReaderWriter/Simple.h b/lld/include/lld/ReaderWriter/Simple.h index 8ca9fe11baa..dcae7f15c8e 100644 --- a/lld/include/lld/ReaderWriter/Simple.h +++ b/lld/include/lld/ReaderWriter/Simple.h @@ -71,7 +71,7 @@ protected: class FileToMutable : public SimpleFile { public: - explicit FileToMutable(const LinkingContext &context, File &file) + FileToMutable(const LinkingContext &context, File &file) : SimpleFile(context, file.path()) { for (auto definedAtom : file.defined()) _definedAtoms._atoms.push_back(std::move(definedAtom)); |