diff options
Diffstat (limited to 'editor/ground-editor.hpp')
-rw-r--r-- | editor/ground-editor.hpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/editor/ground-editor.hpp b/editor/ground-editor.hpp index 7baa716f..9745d14b 100644 --- a/editor/ground-editor.hpp +++ b/editor/ground-editor.hpp @@ -30,10 +30,8 @@ public: ~ground_editor() noexcept; std::shared_ptr<ground_atlas> maybe_atlas(StringView str); std::shared_ptr<ground_atlas> atlas(StringView str); - auto cbegin() const noexcept { return _atlases.cbegin(); } - auto cend() const noexcept { return _atlases.cend(); } - auto begin() const noexcept { return _atlases.cbegin(); } - auto end() const noexcept { return _atlases.cend(); } + typename std::map<StringView, ground_cell>::const_iterator begin() const noexcept; + typename std::map<StringView, ground_cell>::const_iterator end() const noexcept; StringView name() const noexcept; void clear_selection(); |