From 0525e76317aba6375483527a5baf29f2b7e6daa6 Mon Sep 17 00:00:00 2001 From: Arsentiy Milchakov Date: Mon, 23 Jan 2017 18:21:26 +0300 Subject: [PATCH] compilation fix --- editor/editor_notes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/editor_notes.cpp b/editor/editor_notes.cpp index 88a9c661fc..602e5996fa 100644 --- a/editor/editor_notes.cpp +++ b/editor/editor_notes.cpp @@ -170,8 +170,8 @@ void Notes::Upload(osm::OsmOAuth const & auth) auto const doUpload = [self, auth]() { std::unique_lock ulock(self->m_mu); // Size of m_notes is decreased only in this method. - size_t size = notes.size(); auto & notes = self->m_notes; + size_t size = notes.size(); osm::ServerApi06 api(auth); while (size > 0)