Skip to content

Commit 0cc42a2

Browse files
committed
ObjectPointerCollection constructor can't be noexcept.
1 parent 4472dfb commit 0cc42a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/osmium/object_pointer_collection.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ namespace osmium {
7474
using iterator = boost::indirect_iterator<std::vector<osmium::OSMObject*>::iterator, osmium::OSMObject>;
7575
using const_iterator = boost::indirect_iterator<std::vector<osmium::OSMObject*>::const_iterator, const osmium::OSMObject>;
7676

77-
ObjectPointerCollection() noexcept = default;
77+
ObjectPointerCollection() = default;
7878

7979
/**
8080
* Add a pointer to an object to the collection.

0 commit comments

Comments
 (0)