[lld] r195108 - Remove meaningless "explicit" keywords.

Rui Ueyama ruiu at google.com
Mon Nov 18 22:20:56 PST 2013


Author: ruiu
Date: Tue Nov 19 00:20:56 2013
New Revision: 195108

URL: http://llvm.org/viewvc/llvm-project?rev=195108&view=rev
Log:
Remove meaningless "explicit" keywords.

Modified:
    lld/trunk/lib/ReaderWriter/PECOFF/IdataPass.h

Modified: lld/trunk/lib/ReaderWriter/PECOFF/IdataPass.h
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/lib/ReaderWriter/PECOFF/IdataPass.h?rev=195108&r1=195107&r2=195108&view=diff
==============================================================================
--- lld/trunk/lib/ReaderWriter/PECOFF/IdataPass.h (original)
+++ lld/trunk/lib/ReaderWriter/PECOFF/IdataPass.h Tue Nov 19 00:20:56 2013
@@ -59,7 +59,7 @@ void addDir32NBReloc(COFFBaseDefinedAtom
 
 // 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:





More information about the llvm-commits mailing list