Skip to content

Commit

Permalink
fix template id in constructor warning (#1333)
Browse files Browse the repository at this point in the history
  • Loading branch information
molpopgen authored Aug 7, 2024
1 parent c60397f commit 9e0af8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fwdpy11/headers/fwdpy11/serialization/Mutation.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ namespace fwdpp
template <> struct serialize_mutation<fwdpy11::Mutation>
{
io::scalar_writer writer;
serialize_mutation<fwdpy11::Mutation>() : writer{}
serialize_mutation() : writer{}
{
}
template <typename streamtype>
Expand Down Expand Up @@ -62,7 +62,7 @@ namespace fwdpp
template <> struct deserialize_mutation<fwdpy11::Mutation>
{
io::scalar_reader reader;
deserialize_mutation<fwdpy11::Mutation>() : reader{}
deserialize_mutation() : reader{}
{
}
template <typename streamtype>
Expand Down

0 comments on commit 9e0af8c

Please sign in to comment.