Skip to content

Commit

Permalink
Remove extra ; after member function definition
Browse files Browse the repository at this point in the history
Triggered by -Wextra-semi.
  • Loading branch information
jhasse authored and AzothAmmo committed Mar 27, 2022
1 parent 5b37553 commit ddd4672
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/cereal/archives/json.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ namespace cereal

auto base64string = base64::encode( reinterpret_cast<const unsigned char *>( data ), size );
saveValue( base64string );
};
}

//! @}
/*! @name Internal Functionality
Expand Down Expand Up @@ -474,7 +474,7 @@ namespace cereal

std::memcpy( data, decoded.data(), decoded.size() );
itsNextName = nullptr;
};
}

private:
//! @}
Expand Down

0 comments on commit ddd4672

Please sign in to comment.