summaryrefslogtreecommitdiff
path: root/compiler/utils/dedupe_set.h
diff options
context:
space:
mode:
author Roland Levillain <rpl@google.com> 2015-08-12 18:15:42 +0100
committer Roland Levillain <rpl@google.com> 2015-08-12 18:15:42 +0100
commit3887c468d731420e929e6ad3acf190d5431e94fc (patch)
tree67dacb849e722e33e118b97714a48e467c06cbd5 /compiler/utils/dedupe_set.h
parent6a5037eb3340e4c981fd7de3ff45167ee5b7fc82 (diff)
Remove unnecessary `explicit` qualifiers on constructors.
Change-Id: Id12e392ad50f66a6e2251a68662b7959315dc567
Diffstat (limited to 'compiler/utils/dedupe_set.h')
-rw-r--r--compiler/utils/dedupe_set.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/dedupe_set.h b/compiler/utils/dedupe_set.h
index 8cdb180740..2c4a689096 100644
--- a/compiler/utils/dedupe_set.h
+++ b/compiler/utils/dedupe_set.h
@@ -99,7 +99,7 @@ class DedupeSet {
return hashed_key.store_ptr;
}
- explicit DedupeSet(const char* set_name, SwapAllocator<void>& alloc)
+ DedupeSet(const char* set_name, SwapAllocator<void>& alloc)
: allocator_(alloc), hash_time_(0) {
for (HashType i = 0; i < kShard; ++i) {
std::ostringstream oss;