diff options
| author | Ben Judd <bjudd61@gmail.com> | 2024-06-07 17:53:34 -0700 |
|---|---|---|
| committer | Ben Judd <bjudd@nuro.ai> | 2024-06-07 17:54:06 -0700 |
| commit | 9c185249a2943bb81fcdff47c0d9423d0cc8caa6 (patch) | |
| tree | 4c21f5e6be57c2c2177a2bcd72d1ec1853fcee2b /src | |
| parent | 2754e27cf2a85fd4004dd7daabe052b7df1b425a (diff) | |
Fix build by moving include.
Diffstat (limited to 'src')
| -rw-r--r-- | src/string.cc | 1 | ||||
| -rw-r--r-- | src/string.hh | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/string.cc b/src/string.cc index a6befa13..7be39715 100644 --- a/src/string.cc +++ b/src/string.cc @@ -1,7 +1,6 @@ #include "string.hh" #include <cstdio> -#include <cstring> #include "assert.hh" #include "unit_tests.hh" diff --git a/src/string.hh b/src/string.hh index 3bbb907e..b3102272 100644 --- a/src/string.hh +++ b/src/string.hh @@ -2,6 +2,7 @@ #define string_hh_INCLUDED #include <bit> +#include <cstring> #include "memory.hh" #include "hash.hh" #include "units.hh" |
