diff options
author | Your Name <you@example.com> | 2021-05-01 15:10:54 -0400 |
---|---|---|
committer | Your Name <you@example.com> | 2021-05-01 15:10:54 -0400 |
commit | 7b5d1e3d46e94262a9c0fd3a01ab4685aea9d12d (patch) | |
tree | d9b808542216f71dbab053ad23145903e96c6401 /src/spellcasting.h | |
parent | 5a813a75412ac9b8fadb90c9abd46dd95aee8e9b (diff) | |
download | dmtool-7b5d1e3d46e94262a9c0fd3a01ab4685aea9d12d.tar.gz dmtool-7b5d1e3d46e94262a9c0fd3a01ab4685aea9d12d.tar.bz2 dmtool-7b5d1e3d46e94262a9c0fd3a01ab4685aea9d12d.zip |
Added bash completion, amongst others
Diffstat (limited to 'src/spellcasting.h')
-rw-r--r-- | src/spellcasting.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/spellcasting.h b/src/spellcasting.h index 3a55277..0bbdf84 100644 --- a/src/spellcasting.h +++ b/src/spellcasting.h @@ -15,7 +15,7 @@ namespace entry { const std::vector<Spell> spells; json toJson(void) const { - std::vector<string> s; + std::vector<std::string> s; for(auto spell : spells) { s.push_back(spell.getName()); } |