Skip to content

Commit

Permalink
Merge pull request #1 from tdameros/clang
Browse files Browse the repository at this point in the history
fix clang include
  • Loading branch information
tdameros authored May 4, 2024
2 parents f3b5bb3 + 3b46c9e commit 9c2163f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/utils/isDigitString.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@

#include <algorithm>
#include <string>
#include <functional>

bool isDigitString(const std::string& s) {
return (std::find_if(s.begin(), s.end(),
Expand Down
1 change: 1 addition & 0 deletions src/utils/split.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include "utils/utils.hpp"

#include <algorithm>
#include <functional>

std::vector<std::string> splitDelimiter(const std::string& s, char delimiter) {
std::vector<std::string> result;
Expand Down
1 change: 1 addition & 0 deletions src/utils/trim.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include "utils/utils.hpp"

#include <algorithm>
#include <functional>

std::string &trim(std::string &s) {
return (ltrim(rtrim(s)));
Expand Down

0 comments on commit 9c2163f

Please sign in to comment.