Skip to content

Commit

Permalink
workaround for g++9 warning on non-defined inline function
Browse files Browse the repository at this point in the history
  • Loading branch information
biojppm committed Mar 27, 2024
1 parent 211b104 commit af81f59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/c4/std/string_fwd.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ C4_SUPPRESS_WARNING_MSVC_POP

namespace c4 {

C4_ALWAYS_INLINE c4::substr to_substr(std::string &s) noexcept;
C4_ALWAYS_INLINE c4::csubstr to_csubstr(std::string const& s) noexcept;
c4::substr to_substr(std::string &s) noexcept;
c4::csubstr to_csubstr(std::string const& s) noexcept;

bool operator== (c4::csubstr ss, std::string const& s);
bool operator!= (c4::csubstr ss, std::string const& s);
Expand Down

0 comments on commit af81f59

Please sign in to comment.