Skip to content

Commit

Permalink
ObjectPointerCollection constructor can't be noexcept.
Browse files Browse the repository at this point in the history
  • Loading branch information
joto committed Nov 18, 2016
1 parent 4472dfb commit 0cc42a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/osmium/object_pointer_collection.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ namespace osmium {
using iterator = boost::indirect_iterator<std::vector<osmium::OSMObject*>::iterator, osmium::OSMObject>;
using const_iterator = boost::indirect_iterator<std::vector<osmium::OSMObject*>::const_iterator, const osmium::OSMObject>;

ObjectPointerCollection() noexcept = default;
ObjectPointerCollection() = default;

/**
* Add a pointer to an object to the collection.
Expand Down

0 comments on commit 0cc42a2

Please sign in to comment.