Skip to content

Commit 3321047

Browse files
authored
Merge pull request #34839 from drodriguez/windows-msvc2017-constructor-or-initializer-list
[windows][msvc2017] Avoid initializer list constructor ambiguity.
2 parents aa04872 + 42e0d33 commit 3321047

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/swift/Basic/Fingerprint.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ class Fingerprint final {
124124
///
125125
/// Very well, LLVM. A default value you shall have.
126126
friend class llvm::yaml::IO;
127-
Fingerprint() : Core{DIGEST_LENGTH, '0'} {}
127+
Fingerprint() : Core(DIGEST_LENGTH, '0') {}
128128
};
129129

130130
void simple_display(llvm::raw_ostream &out, const Fingerprint &fp);

0 commit comments

Comments
 (0)