Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreMarchand20 committed Sep 30, 2024
1 parent 87afa1e commit 7d3391b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/htool/hmatrix/hmatrix_distributed_output.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

namespace htool {

bool is_positive_integer(const std::string &s) {
inline bool is_positive_integer(const std::string &s) {
return !s.empty() && std::find_if(s.begin(), s.end(), [](unsigned char c) { return !std::isdigit(c); }) == s.end();
}

Expand Down

0 comments on commit 7d3391b

Please sign in to comment.