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/dutch.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/dutch.h')
-rw-r--r-- | src/mnemonics/dutch.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/mnemonics/dutch.h b/src/mnemonics/dutch.h index d0a972e59..0d7a637e6 100644 --- a/src/mnemonics/dutch.h +++ b/src/mnemonics/dutch.h @@ -49,9 +49,7 @@ namespace Language class Dutch: public Base
{
public:
- Dutch()
- {
- word_list = new std::vector<std::string>({
+ Dutch(): Base("Dutch", std::vector<std::string>({
"aalglad",
"aalscholver",
"aambeeld",
@@ -1678,11 +1676,8 @@ namespace Language "zwiep",
"zwijmel",
"zworen"
- });
- unique_prefix_length = 4;
- word_map = new std::unordered_map<std::string, uint32_t>;
- trimmed_word_map = new std::unordered_map<std::string, uint32_t>;
- language_name = "Dutch";
+ }), 4)
+ {
populate_maps();
}
};
|