Skip to content

Commit 17980aa

Browse files
Merge #979: [Trivial] Fix a size_t reference for clang 13
7e4c850 [Trivial] Fix a size_t reference for clang 13 (Zannick) Pull request description: This was the only one necessary to build veild. I imagine any others have a `using` directive somewhere in their includes. Tree-SHA512: 11e21c90f5bd61d17f14cad15184978f6dc8c001afec4e6d6e5403d809eedabd8920c13f193c3925a9a11ec1773b0b038c41daa7bf244fb206f1ef4d1b32935e
2 parents fb53a14 + 7e4c850 commit 17980aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/veil/mnemonic/dictionary.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
/**
88
* A valid mnemonic dictionary has exactly this many words.
99
*/
10-
static constexpr size_t dictionary_size = 2048;
10+
static constexpr std::size_t dictionary_size = 2048;
1111

1212
/**
1313
* Dictionary definitions for creating mnemonics.

0 commit comments

Comments
 (0)