diff options
author | fanquake <fanquake@gmail.com> | 2022-04-12 10:35:15 +0100 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-04-20 13:51:33 +0100 |
commit | c79ad935f0412bac3e19a6b925efdb390eb00bd9 (patch) | |
tree | 87414427d7dd8749f8a14fce01eb3501f0a96c54 /src/compat/glibcxx_sanity.cpp | |
parent | 094d9fda5ccee7d78a2e3d8b1eec17b8b6a33466 (diff) |
refactor: fix includes in src/compat
Add missing includes.
Swap C headers for their C++ counterparts.
Remove pointless / unmaintainable include comments. This is even more the case
when we are actually using IWYU, as if anyone wants to see the comments they can
just get IWYU to generate them.
Diffstat (limited to 'src/compat/glibcxx_sanity.cpp')
-rw-r--r-- | src/compat/glibcxx_sanity.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compat/glibcxx_sanity.cpp b/src/compat/glibcxx_sanity.cpp index e6e6208e40..f2ceeeeb9c 100644 --- a/src/compat/glibcxx_sanity.cpp +++ b/src/compat/glibcxx_sanity.cpp @@ -5,6 +5,7 @@ #include <list> #include <locale> #include <stdexcept> +#include <string> namespace { |