Skip to content

Commit 1b11637

Browse files
authored
Merge pull request #146 from MarcelRaad/extra_semi
Fix -Wextra-semi clang warning
2 parents 7d79dc7 + 8d4b213 commit 1b11637

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/boost/serialization/collection_size_type.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class collection_size_type {
2222
typedef std::size_t base_type;
2323
base_type t;
2424
public:
25-
collection_size_type(): t(0) {};
25+
collection_size_type(): t(0) {}
2626
explicit collection_size_type(const std::size_t & t_) :
2727
t(t_)
2828
{}

0 commit comments

Comments
 (0)