Skip to content

Commit 872ec38

Browse files
committed
[NFC][sanitizer] Remove unneeded "explicit"
1 parent 0ddf38c commit 872ec38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/lib/sanitizer_common/sanitizer_common.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ class InternalMmapVector : public InternalMmapVectorNoCtor<T> {
592592

593593
class InternalScopedString {
594594
public:
595-
explicit InternalScopedString() : buffer_(1) { buffer_[0] = '\0'; }
595+
InternalScopedString() : buffer_(1) { buffer_[0] = '\0'; }
596596

597597
uptr length() const { return buffer_.size() - 1; }
598598
void clear() {

0 commit comments

Comments
 (0)