reapack

Package manager for REAPER
Log | Files | Refs | Submodules | README | LICENSE

commit 580ddf6d6d7bfc64764758245a2f14f3d34a8151
parent b11a94294f0637065a1da159204812b63726a851
Author: cfillion <cfillion@users.noreply.github.com>
Date:   Tue, 26 Jan 2016 17:39:54 -0500

make picky MSVC happy...

Diffstat:
Msrc/remote.hpp | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/remote.hpp b/src/remote.hpp @@ -78,8 +78,8 @@ public: size_t size() const { return m_remotes.size(); } bool hasName(const std::string &name) const { return m_map.count(name) > 0; } - auto begin() const { return m_remotes.begin(); } - auto end() const { return m_remotes.end(); } + std::vector<Remote>::const_iterator begin() const { return m_remotes.begin(); } + std::vector<Remote>::const_iterator end() const { return m_remotes.end(); } private: std::vector<Remote> m_remotes;