diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-08-29 09:42:23 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-08-29 09:53:48 +0000 |
commit | f0bc684ccdc7bc66010254c9136f960467e6a3db (patch) | |
tree | ee691faace790a96048aaaad7b51eff65f4d5ac7 /src/mnemonics/english.h | |
parent | Merge pull request #4223 (diff) | |
download | monero-f0bc684ccdc7bc66010254c9136f960467e6a3db.tar.xz |
mnemonics: fix outrageous compile time with CLANG in release
from several minutes to 10-15 seconds
Diffstat (limited to 'src/mnemonics/english.h')
-rw-r--r-- | src/mnemonics/english.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mnemonics/english.h b/src/mnemonics/english.h index ee087674d..d5c5594ef 100644 --- a/src/mnemonics/english.h +++ b/src/mnemonics/english.h @@ -49,7 +49,10 @@ namespace Language class English: public Base
{
public:
- English(): Base("English", "English", std::vector<std::string>({
+ English(): Base("English", "English", {}, 3)
+ {
+ static constexpr const char * const words[NWORDS] =
+ {
"abbey",
"abducts",
"ability",
@@ -1676,8 +1679,8 @@ namespace Language "zombie",
"zones",
"zoom"
- }), 3)
- {
+ };
+ set_words(words);
populate_maps();
}
};
|