Skip to content

Commit

Permalink
Remove extra ;
Browse files Browse the repository at this point in the history
  • Loading branch information
edo9300 committed Sep 6, 2024
1 parent 42e897a commit e8958d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gframe/text_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ bool starts_with(const T1& stringview, const T2& token) {
epro::basic_string_view token_sv{token};
return stringview.size() >= token_sv.size() && memcmp(stringview.data(), token_sv.data(), token_sv.size()) == 0;
}
};
}
using namespace std::string_view_literals;
#endif /* TEXT_TYPES_H_ */

0 comments on commit e8958d4

Please sign in to comment.