diff options
author | Riccardo Spagni <ric@spagni.net> | 2018-09-18 17:36:13 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2018-09-18 17:36:13 +0200 |
commit | e468d541b45b3885aa20f6dfbb2c0d838290d43a (patch) | |
tree | 8672a8cd72e31f84551acbafde659c3112e34a01 /src/mnemonics/spanish.h | |
parent | Merge pull request #4306 (diff) | |
parent | mnemonics: fix outrageous compile time with CLANG in release (diff) | |
download | monero-e468d541b45b3885aa20f6dfbb2c0d838290d43a.tar.xz |
Merge pull request #4311
f0bc684c mnemonics: fix outrageous compile time with CLANG in release (moneromooo-monero)
Diffstat (limited to 'src/mnemonics/spanish.h')
-rw-r--r-- | src/mnemonics/spanish.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mnemonics/spanish.h b/src/mnemonics/spanish.h index 51f38fede..4d7a896a6 100644 --- a/src/mnemonics/spanish.h +++ b/src/mnemonics/spanish.h @@ -72,7 +72,10 @@ namespace Language class Spanish: public Base
{
public:
- Spanish(): Base("Español", "Spanish", std::vector<std::string>({
+ Spanish(): Base("Español", "Spanish", {}, 4)
+ {
+ static constexpr const char * const words[NWORDS] =
+ {
"ábaco",
"abdomen",
"abeja",
@@ -1699,8 +1702,8 @@ namespace Language "risa",
"ritmo",
"rito"
- }), 4)
- {
+ };
+ set_words(words);
populate_maps(ALLOW_SHORT_WORDS);
}
};
|