Skip to content

Commit

Permalink
fix noexcept constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
skallweitNV committed Aug 31, 2024
1 parent acfa608 commit 5431788
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/static_vector.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class static_vector
using const_iterator = const value_type*;

/// Default constructor.
static_vector() noexcept = default;
static_vector() = default;

/// Size constructor.
static_vector(size_type size, const value_type& value)
Expand Down

0 comments on commit 5431788

Please sign in to comment.