Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lld/COFF
diff options
context:
space:
mode:
authorRui Ueyama <ruiu@google.com>2015-06-28 05:00:33 +0300
committerRui Ueyama <ruiu@google.com>2015-06-28 05:00:33 +0300
commitb0a360bf153d7c7dcbd572cf939a2cdbed621949 (patch)
tree79f467403077eda3fe4325479f732dd615843c12 /lld/COFF
parent50be6edfa60bdc6cdf1fcb8009600e2cc11785c0 (diff)
COFF: Remove useless "explicit".
llvm-svn: 240899
Diffstat (limited to 'lld/COFF')
-rw-r--r--lld/COFF/InputFiles.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/COFF/InputFiles.h b/lld/COFF/InputFiles.h
index 7a1ef56ec025..12e4f79bde0c 100644
--- a/lld/COFF/InputFiles.h
+++ b/lld/COFF/InputFiles.h
@@ -58,7 +58,7 @@ public:
StringRef getDirectives() { return StringRef(Directives).trim(); }
protected:
- explicit InputFile(Kind K, MemoryBufferRef M) : MB(M), FileKind(K) {}
+ InputFile(Kind K, MemoryBufferRef M) : MB(M), FileKind(K) {}
MemoryBufferRef MB;
std::string Directives;