diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2024-03-26 11:57:39 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2024-03-26 12:18:54 +0100 |
commit | 702e6907265035af031004f21ce09e3f62037fb4 (patch) | |
tree | 8e805516f914bb49f075a9b262299d312f178c8d /src/path.cc | |
parent | 9b3b365a6645c16b0f93dcd798da83494e481d26 (diff) |
Fix all header file linter warnings
Diffstat (limited to 'src/path.cc')
-rw-r--r-- | src/path.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/path.cc b/src/path.cc index 993f9a6..eaa1e04 100644 --- a/src/path.cc +++ b/src/path.cc @@ -30,8 +30,8 @@ #include <libgen.h> #endif/*__MINGW32__*/ -#include <string.h> -#include <stdlib.h> +#include <cstring> +#include <cstdlib> std::string getPath(const std::string& file) { |