Skip to content

Commit

Permalink
Remove unnecessary inline in bittypes.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
rikyoz committed Aug 4, 2024
1 parent 2c11c09 commit 367baad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/bit7z/bittypes.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ struct StringTraits;
template<>
struct StringTraits< char > {
template< class T >
static inline auto convertToString( T value ) -> std::string {
static auto convertToString( T value ) -> std::string {
return std::to_string( value );
}
};

template<>
struct StringTraits< wchar_t > {
template< class T >
static inline auto convertToString( T value ) -> std::wstring {
static auto convertToString( T value ) -> std::wstring {
return std::to_wstring( value );
}
};
Expand Down

0 comments on commit 367baad

Please sign in to comment.