diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2015-10-21 20:59:55 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-03-25 11:51:04 +0000 |
commit | e98f1114a04564771d5475ca46127a3bd7fe7265 (patch) | |
tree | 91b56742a5ec02caf7789dc69006ca1c5fce2fc6 /src/mnemonics/english.h | |
parent | Merge pull request #1924 (diff) | |
download | monero-e98f1114a04564771d5475ca46127a3bd7fe7265.tar.xz |
mnemonics: misc cleanup
Pass relevant information to the base class instead of overwriting
default values later, use objects instead of pointers to objects
to avoid having to new objects unnecessarily.
Diffstat (limited to 'src/mnemonics/english.h')
-rw-r--r-- | src/mnemonics/english.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/mnemonics/english.h b/src/mnemonics/english.h index 703c7780c..e6cfa8951 100644 --- a/src/mnemonics/english.h +++ b/src/mnemonics/english.h @@ -49,9 +49,7 @@ namespace Language class English: public Base
{
public:
- English()
- {
- word_list = new std::vector<std::string>({
+ English(): Base("English", std::vector<std::string>({
"abbey",
"abducts",
"ability",
@@ -1678,11 +1676,8 @@ namespace Language "zombie",
"zones",
"zoom"
- });
- unique_prefix_length = 3;
- word_map = new std::unordered_map<std::string, uint32_t>;
- trimmed_word_map = new std::unordered_map<std::string, uint32_t>;
- language_name = "English";
+ }), 3)
+ {
populate_maps();
}
};
|