Remove meaningless "explicit" keywords.

llvm-svn: 195108
This commit is contained in:
Rui Ueyama 2013-11-19 06:20:56 +00:00
parent d9b26dc84b
commit 03198d7cfa
1 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ void addDir32NBReloc(COFFBaseDefinedAtom *atom, const Atom *target,
// A state object of this pass.
struct Context {
explicit Context(MutableFile &f, File &g) : file(f), dummyFile(g) {}
Context(MutableFile &f, File &g) : file(f), dummyFile(g) {}
MutableFile &file;
File &dummyFile;
@ -145,7 +145,7 @@ private:
class ImportTableEntryAtom : public IdataAtom {
public:
explicit ImportTableEntryAtom(Context &context, uint32_t contents)
ImportTableEntryAtom(Context &context, uint32_t contents)
: IdataAtom(context, assembleRawContent(contents)) {}
private: