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/sem.cc | |
parent | 9b3b365a6645c16b0f93dcd798da83494e481d26 (diff) |
Fix all header file linter warnings
Diffstat (limited to 'src/sem.cc')
-rw-r--r-- | src/sem.cc | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -28,8 +28,8 @@ #include <hugin.hpp> #include <limits> -#include <assert.h> -#include <string.h> +#include <cassert> +#include <cstring> #include <chrono> #include <thread> @@ -37,8 +37,8 @@ #if DG_PLATFORM != DG_PLATFORM_WINDOWS #include <semaphore.h> -#include <errno.h> -#include <stdio.h> +#include <cerrno> +#include <cstdio> #include <sys/time.h> #endif |