@@ -40,29 +40,29 @@ class dependency_manager_t
4040 *
4141 * This has to be called *after* the object was stored in the object store.
4242 */
43- virtual void node_changed (osmid_t ) {};
43+ virtual void node_changed (osmid_t ) {}
4444
4545 /* *
4646 * Mark a way as changed to trigger the propagation of this change to
4747 * relations.
4848 *
4949 * This has to be called *after* the object was stored in the object store.
5050 */
51- virtual void way_changed (osmid_t ) {};
51+ virtual void way_changed (osmid_t ) {}
5252
5353 /* *
5454 * Mark a relation as changed to trigger the propagation of this change to
5555 * other relations.
5656 *
5757 * This has to be called *after* the object was stored in the object store.
5858 */
59- virtual void relation_changed (osmid_t ) {};
59+ virtual void relation_changed (osmid_t ) {}
6060
6161 /* *
6262 * Mark a relation as deleted to trigger the propagation of this change to
6363 * the way members.
6464 */
65- virtual void relation_deleted (osmid_t ) {};
65+ virtual void relation_deleted (osmid_t ) {}
6666
6767 // / Are there pending objects that need to be processed?
6868 virtual bool has_pending () const noexcept { return false ; }
@@ -89,7 +89,6 @@ class dependency_manager_t
8989class full_dependency_manager_t : public dependency_manager_t
9090{
9191public:
92-
9392 /* *
9493 * Constructor.
9594 *
@@ -125,7 +124,8 @@ class full_dependency_manager_t : public dependency_manager_t
125124 * must be of type osmid_t.
126125 */
127126 template <typename TOutputIterator>
128- void get_pending_way_ids (TOutputIterator &&it) {
127+ void get_pending_way_ids (TOutputIterator &&it)
128+ {
129129 osmid_t id;
130130 while (id_tracker::is_valid (id = m_ways_pending_tracker.pop_mark ())) {
131131 *it++ = id;
@@ -144,15 +144,16 @@ class full_dependency_manager_t : public dependency_manager_t
144144 * must be of type osmid_t.
145145 */
146146 template <typename TOutputIterator>
147- void get_pending_relation_ids (TOutputIterator &&it) {
147+ void get_pending_relation_ids (TOutputIterator &&it)
148+ {
148149 osmid_t id;
149150 while (id_tracker::is_valid (id = m_rels_pending_tracker.pop_mark ())) {
150151 *it++ = id;
151152 }
152153 }
153154
154155private:
155- middle_t * m_object_store;
156+ middle_t * m_object_store;
156157
157158 id_tracker m_ways_pending_tracker;
158159 id_tracker m_rels_pending_tracker;
0 commit comments