Skip to content

Commit 7e4c850

Browse files
committed
[Trivial] Fix a size_t reference for clang 13
1 parent 525accf commit 7e4c850

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)