diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-04-23 13:31:17 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-04-23 13:31:17 +0200 |
| commit | 2d8fed40bd0d0f8144783b6b344dc79944291b72 (patch) | |
| tree | 81e8f29078723e807ad6b32391a884136ec6dd14 /libs/kstd/include | |
| parent | dec3c3b0387ec477125db21e741bc492d3475db5 (diff) | |
| download | teachos-2d8fed40bd0d0f8144783b6b344dc79944291b72.tar.xz teachos-2d8fed40bd0d0f8144783b6b344dc79944291b72.zip | |
chore: organize includes
Diffstat (limited to 'libs/kstd/include')
| -rw-r--r-- | libs/kstd/include/kstd/bits/format/context.hpp | 3 | ||||
| -rw-r--r-- | libs/kstd/include/kstd/stack | 1 | ||||
| -rw-r--r-- | libs/kstd/include/kstd/string | 7 | ||||
| -rw-r--r-- | libs/kstd/include/kstd/units | 5 |
4 files changed, 7 insertions, 9 deletions
diff --git a/libs/kstd/include/kstd/bits/format/context.hpp b/libs/kstd/include/kstd/bits/format/context.hpp index 7f392a0..1883fc8 100644 --- a/libs/kstd/include/kstd/bits/format/context.hpp +++ b/libs/kstd/include/kstd/bits/format/context.hpp @@ -3,9 +3,8 @@ // IWYU pragma: private, include <kstd/format> -#include "arg.hpp" +#include "kstd/bits/format/arg.hpp" #include "kstd/bits/format/output_buffer.hpp" - #include <kstd/os/error.hpp> #include <concepts> diff --git a/libs/kstd/include/kstd/stack b/libs/kstd/include/kstd/stack index 9750376..77e6bfd 100644 --- a/libs/kstd/include/kstd/stack +++ b/libs/kstd/include/kstd/stack @@ -2,6 +2,7 @@ #define KSTD_STACK_HPP #include "kstd/vector" + #include <initializer_list> #include <utility> diff --git a/libs/kstd/include/kstd/string b/libs/kstd/include/kstd/string index 58c4a08..e228a04 100644 --- a/libs/kstd/include/kstd/string +++ b/libs/kstd/include/kstd/string @@ -1,10 +1,9 @@ #ifndef KSTD_STRING_HPP #define KSTD_STRING_HPP -#include "kstd/bits/format/context.hpp" -#include "kstd/bits/format/formatter.hpp" -#include "kstd/bits/format/formatter/string_view.hpp" - +#include <kstd/bits/format/context.hpp> +#include <kstd/bits/format/formatter.hpp> +#include <kstd/bits/format/formatter/string_view.hpp> #include <kstd/cstring> #include <kstd/os/error.hpp> #include <kstd/vector> diff --git a/libs/kstd/include/kstd/units b/libs/kstd/include/kstd/units index bc7e1b9..df5eb37 100644 --- a/libs/kstd/include/kstd/units +++ b/libs/kstd/include/kstd/units @@ -15,9 +15,8 @@ namespace kstd using value_type = ValueType; constexpr basic_unit() noexcept - : value{} - { - } + : value{} + {} explicit constexpr basic_unit(value_type value) noexcept : value{value} |
