aboutsummaryrefslogtreecommitdiff
path: root/libs/kstd/include
diff options
context:
space:
mode:
Diffstat (limited to 'libs/kstd/include')
-rw-r--r--libs/kstd/include/kstd/bits/format/arg.hpp4
-rw-r--r--libs/kstd/include/kstd/bits/format/args.hpp8
-rw-r--r--libs/kstd/include/kstd/bits/format/context.hpp4
-rw-r--r--libs/kstd/include/kstd/bits/format/error.hpp2
-rw-r--r--libs/kstd/include/kstd/bits/format/formatter.hpp6
-rw-r--r--libs/kstd/include/kstd/bits/format/formatter/bool.hpp10
-rw-r--r--libs/kstd/include/kstd/bits/format/formatter/byte.hpp6
-rw-r--r--libs/kstd/include/kstd/bits/format/formatter/char.hpp12
-rw-r--r--libs/kstd/include/kstd/bits/format/formatter/cstring.hpp6
-rw-r--r--libs/kstd/include/kstd/bits/format/formatter/integral.hpp10
-rw-r--r--libs/kstd/include/kstd/bits/format/formatter/ordering.hpp8
-rw-r--r--libs/kstd/include/kstd/bits/format/formatter/pointer.hpp10
-rw-r--r--libs/kstd/include/kstd/bits/format/formatter/range.hpp2
-rw-r--r--libs/kstd/include/kstd/bits/format/formatter/string_view.hpp8
-rw-r--r--libs/kstd/include/kstd/bits/format/parse_context.hpp2
-rw-r--r--libs/kstd/include/kstd/bits/format/specifiers.hpp4
-rw-r--r--libs/kstd/include/kstd/bits/format/string.hpp8
-rw-r--r--libs/kstd/include/kstd/bits/observer_ptr.hpp2
-rw-r--r--libs/kstd/include/kstd/format34
-rw-r--r--libs/kstd/include/kstd/memory6
-rw-r--r--libs/kstd/include/kstd/os/print.hpp4
-rw-r--r--libs/kstd/include/kstd/print5
-rw-r--r--libs/kstd/include/kstd/stack2
23 files changed, 81 insertions, 82 deletions
diff --git a/libs/kstd/include/kstd/bits/format/arg.hpp b/libs/kstd/include/kstd/bits/format/arg.hpp
index a9a6ab5..e65b26f 100644
--- a/libs/kstd/include/kstd/bits/format/arg.hpp
+++ b/libs/kstd/include/kstd/bits/format/arg.hpp
@@ -3,8 +3,8 @@
// IWYU pragma: private, include <kstd/format>
-#include "error.hpp"
-#include "fwd.hpp"
+#include <kstd/bits/format/error.hpp>
+#include <kstd/bits/format/fwd.hpp>
#include <cstddef>
#include <cstdint>
diff --git a/libs/kstd/include/kstd/bits/format/args.hpp b/libs/kstd/include/kstd/bits/format/args.hpp
index d1586ac..e8e3114 100644
--- a/libs/kstd/include/kstd/bits/format/args.hpp
+++ b/libs/kstd/include/kstd/bits/format/args.hpp
@@ -3,10 +3,10 @@
// IWYU pragma: private, include <kstd/format>
-#include "arg.hpp"
-#include "context.hpp"
-#include "fwd.hpp"
-#include "parse_context.hpp"
+#include <kstd/bits/format/arg.hpp>
+#include <kstd/bits/format/context.hpp>
+#include <kstd/bits/format/fwd.hpp>
+#include <kstd/bits/format/parse_context.hpp>
#include <array>
#include <concepts>
diff --git a/libs/kstd/include/kstd/bits/format/context.hpp b/libs/kstd/include/kstd/bits/format/context.hpp
index 1883fc8..c166ba9 100644
--- a/libs/kstd/include/kstd/bits/format/context.hpp
+++ b/libs/kstd/include/kstd/bits/format/context.hpp
@@ -3,8 +3,8 @@
// IWYU pragma: private, include <kstd/format>
-#include "kstd/bits/format/arg.hpp"
-#include "kstd/bits/format/output_buffer.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/bits/format/error.hpp b/libs/kstd/include/kstd/bits/format/error.hpp
index f0863eb..c0cb53d 100644
--- a/libs/kstd/include/kstd/bits/format/error.hpp
+++ b/libs/kstd/include/kstd/bits/format/error.hpp
@@ -1,7 +1,7 @@
#ifndef KSTD_BITS_FORMAT_ERROR_HPP
#define KSTD_BITS_FORMAT_ERROR_HPP
-#include "kstd/os/error.hpp"
+#include <kstd/os/error.hpp>
namespace kstd::bits::format
{
diff --git a/libs/kstd/include/kstd/bits/format/formatter.hpp b/libs/kstd/include/kstd/bits/format/formatter.hpp
index 096168d..eb28829 100644
--- a/libs/kstd/include/kstd/bits/format/formatter.hpp
+++ b/libs/kstd/include/kstd/bits/format/formatter.hpp
@@ -3,9 +3,9 @@
// IWYU pragma: private, include <kstd/format>
-#include "context.hpp"
-#include "error.hpp"
-#include "parse_context.hpp"
+#include <kstd/bits/format/context.hpp>
+#include <kstd/bits/format/error.hpp>
+#include <kstd/bits/format/parse_context.hpp>
#include <algorithm>
#include <iterator>
diff --git a/libs/kstd/include/kstd/bits/format/formatter/bool.hpp b/libs/kstd/include/kstd/bits/format/formatter/bool.hpp
index e371cec..cc8d190 100644
--- a/libs/kstd/include/kstd/bits/format/formatter/bool.hpp
+++ b/libs/kstd/include/kstd/bits/format/formatter/bool.hpp
@@ -1,11 +1,11 @@
#ifndef KSTD_BITS_FORMAT_FORMATTER_BOOL_HPP
#define KSTD_BITS_FORMAT_FORMATTER_BOOL_HPP
-#include "../context.hpp"
-#include "../error.hpp"
-#include "../formatter.hpp"
-#include "../parse_context.hpp"
-#include "../specifiers.hpp"
+#include <kstd/bits/format/context.hpp>
+#include <kstd/bits/format/error.hpp>
+#include <kstd/bits/format/formatter.hpp>
+#include <kstd/bits/format/parse_context.hpp>
+#include <kstd/bits/format/specifiers.hpp>
#include <iterator>
#include <string_view>
diff --git a/libs/kstd/include/kstd/bits/format/formatter/byte.hpp b/libs/kstd/include/kstd/bits/format/formatter/byte.hpp
index 70d98f4..cc8aece 100644
--- a/libs/kstd/include/kstd/bits/format/formatter/byte.hpp
+++ b/libs/kstd/include/kstd/bits/format/formatter/byte.hpp
@@ -1,9 +1,9 @@
#ifndef KSTD_BITS_FORMAT_FORMATTER_BYTE_HPP
#define KSTD_BITS_FORMAT_FORMATTER_BYTE_HPP
-#include "../context.hpp"
-#include "../formatter.hpp"
-#include "integral.hpp"
+#include <kstd/bits/format/context.hpp>
+#include <kstd/bits/format/formatter.hpp>
+#include <kstd/bits/format/formatter/integral.hpp>
#include <cstddef>
diff --git a/libs/kstd/include/kstd/bits/format/formatter/char.hpp b/libs/kstd/include/kstd/bits/format/formatter/char.hpp
index ddfefe5..92489a1 100644
--- a/libs/kstd/include/kstd/bits/format/formatter/char.hpp
+++ b/libs/kstd/include/kstd/bits/format/formatter/char.hpp
@@ -1,12 +1,12 @@
#ifndef KSTD_BITS_FORMAT_FORMATTER_CHAR_HPP
#define KSTD_BITS_FORMAT_FORMATTER_CHAR_HPP
-#include "../context.hpp"
-#include "../error.hpp"
-#include "../formatter.hpp"
-#include "../parse_context.hpp"
-#include "../specifiers.hpp"
-#include "integral.hpp"
+#include <kstd/bits/format/context.hpp>
+#include <kstd/bits/format/error.hpp>
+#include <kstd/bits/format/formatter.hpp>
+#include <kstd/bits/format/formatter/integral.hpp>
+#include <kstd/bits/format/parse_context.hpp>
+#include <kstd/bits/format/specifiers.hpp>
#include <iterator>
diff --git a/libs/kstd/include/kstd/bits/format/formatter/cstring.hpp b/libs/kstd/include/kstd/bits/format/formatter/cstring.hpp
index 9afb974..553c8ca 100644
--- a/libs/kstd/include/kstd/bits/format/formatter/cstring.hpp
+++ b/libs/kstd/include/kstd/bits/format/formatter/cstring.hpp
@@ -1,9 +1,9 @@
#ifndef KSTD_BITS_FORMAT_FORMATTER_CSTRING_HPP
#define KSTD_BITS_FORMAT_FORMATTER_CSTRING_HPP
-#include "../context.hpp"
-#include "../formatter.hpp"
-#include "string_view.hpp"
+#include <kstd/bits/format/context.hpp>
+#include <kstd/bits/format/formatter.hpp>
+#include <kstd/bits/format/formatter/string_view.hpp>
#include <string_view>
diff --git a/libs/kstd/include/kstd/bits/format/formatter/integral.hpp b/libs/kstd/include/kstd/bits/format/formatter/integral.hpp
index e5a234a..d17dc95 100644
--- a/libs/kstd/include/kstd/bits/format/formatter/integral.hpp
+++ b/libs/kstd/include/kstd/bits/format/formatter/integral.hpp
@@ -1,11 +1,11 @@
#ifndef KSTD_BITS_FORMAT_FORMATTER_INTEGRAL_HPP
#define KSTD_BITS_FORMAT_FORMATTER_INTEGRAL_HPP
-#include "../context.hpp"
-#include "../error.hpp"
-#include "../formatter.hpp"
-#include "../parse_context.hpp"
-#include "../specifiers.hpp"
+#include <kstd/bits/format/context.hpp>
+#include <kstd/bits/format/error.hpp>
+#include <kstd/bits/format/formatter.hpp>
+#include <kstd/bits/format/parse_context.hpp>
+#include <kstd/bits/format/specifiers.hpp>
#include <array>
#include <concepts>
diff --git a/libs/kstd/include/kstd/bits/format/formatter/ordering.hpp b/libs/kstd/include/kstd/bits/format/formatter/ordering.hpp
index 758285d..7832226 100644
--- a/libs/kstd/include/kstd/bits/format/formatter/ordering.hpp
+++ b/libs/kstd/include/kstd/bits/format/formatter/ordering.hpp
@@ -1,10 +1,10 @@
#ifndef KSTD_BITS_FORMAT_FORMATTER_ORDERING_HPP
#define KSTD_BITS_FORMAT_FORMATTER_ORDERING_HPP
-#include "../context.hpp"
-#include "../formatter.hpp"
-#include "../parse_context.hpp"
-#include "../specifiers.hpp"
+#include <kstd/bits/format/context.hpp>
+#include <kstd/bits/format/formatter.hpp>
+#include <kstd/bits/format/parse_context.hpp>
+#include <kstd/bits/format/specifiers.hpp>
#include <compare>
diff --git a/libs/kstd/include/kstd/bits/format/formatter/pointer.hpp b/libs/kstd/include/kstd/bits/format/formatter/pointer.hpp
index fe75a2f..15f9a5b 100644
--- a/libs/kstd/include/kstd/bits/format/formatter/pointer.hpp
+++ b/libs/kstd/include/kstd/bits/format/formatter/pointer.hpp
@@ -1,11 +1,11 @@
#ifndef KSTD_BITS_FORMAT_FORMATTER_POINTER_HPP
#define KSTD_BITS_FORMAT_FORMATTER_POINTER_HPP
-#include "../context.hpp"
-#include "../formatter.hpp"
-#include "../parse_context.hpp"
-#include "../specifiers.hpp"
-#include "integral.hpp"
+#include <kstd/bits/format/context.hpp>
+#include <kstd/bits/format/formatter.hpp>
+#include <kstd/bits/format/formatter/integral.hpp>
+#include <kstd/bits/format/parse_context.hpp>
+#include <kstd/bits/format/specifiers.hpp>
#include <bit>
#include <cstdint>
diff --git a/libs/kstd/include/kstd/bits/format/formatter/range.hpp b/libs/kstd/include/kstd/bits/format/formatter/range.hpp
index 54ee7fb..05af06f 100644
--- a/libs/kstd/include/kstd/bits/format/formatter/range.hpp
+++ b/libs/kstd/include/kstd/bits/format/formatter/range.hpp
@@ -1,7 +1,7 @@
#ifndef KSTD_BITS_FORMAT_FORMATTER_RANGE_HPP
#define KSTD_BITS_FORMAT_FORMATTER_RANGE_HPP
-#include "../formatter.hpp"
+#include <kstd/bits/format/formatter.hpp>
#include <concepts>
#include <ranges>
diff --git a/libs/kstd/include/kstd/bits/format/formatter/string_view.hpp b/libs/kstd/include/kstd/bits/format/formatter/string_view.hpp
index f5b698e..7d74579 100644
--- a/libs/kstd/include/kstd/bits/format/formatter/string_view.hpp
+++ b/libs/kstd/include/kstd/bits/format/formatter/string_view.hpp
@@ -1,10 +1,10 @@
#ifndef KSTD_BITS_FORMAT_FORMATTER_STRING_VIEW_HPP
#define KSTD_BITS_FORMAT_FORMATTER_STRING_VIEW_HPP
-#include "../context.hpp"
-#include "../error.hpp"
-#include "../formatter.hpp"
-#include "../parse_context.hpp"
+#include <kstd/bits/format/context.hpp>
+#include <kstd/bits/format/error.hpp>
+#include <kstd/bits/format/formatter.hpp>
+#include <kstd/bits/format/parse_context.hpp>
#include <string_view>
diff --git a/libs/kstd/include/kstd/bits/format/parse_context.hpp b/libs/kstd/include/kstd/bits/format/parse_context.hpp
index 063263b..cab8d72 100644
--- a/libs/kstd/include/kstd/bits/format/parse_context.hpp
+++ b/libs/kstd/include/kstd/bits/format/parse_context.hpp
@@ -3,7 +3,7 @@
// IWYU pragma: private, include <kstd/format>
-#include "error.hpp"
+#include <kstd/bits/format/error.hpp>
#include <cstddef>
#include <string_view>
diff --git a/libs/kstd/include/kstd/bits/format/specifiers.hpp b/libs/kstd/include/kstd/bits/format/specifiers.hpp
index 18c6f66..211c95d 100644
--- a/libs/kstd/include/kstd/bits/format/specifiers.hpp
+++ b/libs/kstd/include/kstd/bits/format/specifiers.hpp
@@ -3,8 +3,8 @@
// IWYU pragma: private
-#include "error.hpp"
-#include "parse_context.hpp"
+#include <kstd/bits/format/error.hpp>
+#include <kstd/bits/format/parse_context.hpp>
#include <cstddef>
#include <cstdint>
diff --git a/libs/kstd/include/kstd/bits/format/string.hpp b/libs/kstd/include/kstd/bits/format/string.hpp
index 40282e4..e7e4088 100644
--- a/libs/kstd/include/kstd/bits/format/string.hpp
+++ b/libs/kstd/include/kstd/bits/format/string.hpp
@@ -3,10 +3,10 @@
// IWYU pragma: private, include <kstd/format>
-#include "context.hpp"
-#include "error.hpp"
-#include "formatter.hpp"
-#include "parse_context.hpp"
+#include <kstd/bits/format/context.hpp>
+#include <kstd/bits/format/error.hpp>
+#include <kstd/bits/format/formatter.hpp>
+#include <kstd/bits/format/parse_context.hpp>
#include <array>
#include <cstddef>
diff --git a/libs/kstd/include/kstd/bits/observer_ptr.hpp b/libs/kstd/include/kstd/bits/observer_ptr.hpp
index 1c5da15..2593d7a 100644
--- a/libs/kstd/include/kstd/bits/observer_ptr.hpp
+++ b/libs/kstd/include/kstd/bits/observer_ptr.hpp
@@ -3,7 +3,7 @@
// IWYU pragma: private, include <kstd/memory>
-#include "kstd/os/error.hpp"
+#include <kstd/os/error.hpp>
#include <compare>
#include <concepts>
diff --git a/libs/kstd/include/kstd/format b/libs/kstd/include/kstd/format
index 047ea5c..e04b79a 100644
--- a/libs/kstd/include/kstd/format
+++ b/libs/kstd/include/kstd/format
@@ -1,22 +1,22 @@
#ifndef KSTD_FORMAT_HPP
#define KSTD_FORMAT_HPP
-#include "bits/format/arg.hpp" // IWYU pragma: export
-#include "bits/format/args.hpp" // IWYU pragma: export
-#include "bits/format/context.hpp" // IWYU pragma: export
-#include "bits/format/formatter.hpp" // IWYU pragma: export
-#include "bits/format/formatter/bool.hpp" // IWYU pragma: export
-#include "bits/format/formatter/byte.hpp" // IWYU pragma: export
-#include "bits/format/formatter/char.hpp" // IWYU pragma: export
-#include "bits/format/formatter/cstring.hpp" // IWYU pragma: export
-#include "bits/format/formatter/integral.hpp" // IWYU pragma: export
-#include "bits/format/formatter/ordering.hpp" // IWYU pragma: export
-#include "bits/format/formatter/pointer.hpp" // IWYU pragma: export
-#include "bits/format/formatter/range.hpp" // IWYU pragma: export
-#include "bits/format/formatter/string_view.hpp" // IWYU pragma: export
-#include "bits/format/output_buffer.hpp" // IWYU pragma: export
-#include "bits/format/parse_context.hpp" // IWYU pragma: export
-#include "bits/format/string.hpp" // IWYU pragma: export
-#include "bits/format/vformat.hpp" // IWYU pragma: export
+#include <kstd/bits/format/arg.hpp> // IWYU pragma: export
+#include <kstd/bits/format/args.hpp> // IWYU pragma: export
+#include <kstd/bits/format/context.hpp> // IWYU pragma: export
+#include <kstd/bits/format/formatter.hpp> // IWYU pragma: export
+#include <kstd/bits/format/formatter/bool.hpp> // IWYU pragma: export
+#include <kstd/bits/format/formatter/byte.hpp> // IWYU pragma: export
+#include <kstd/bits/format/formatter/char.hpp> // IWYU pragma: export
+#include <kstd/bits/format/formatter/cstring.hpp> // IWYU pragma: export
+#include <kstd/bits/format/formatter/integral.hpp> // IWYU pragma: export
+#include <kstd/bits/format/formatter/ordering.hpp> // IWYU pragma: export
+#include <kstd/bits/format/formatter/pointer.hpp> // IWYU pragma: export
+#include <kstd/bits/format/formatter/range.hpp> // IWYU pragma: export
+#include <kstd/bits/format/formatter/string_view.hpp> // IWYU pragma: export
+#include <kstd/bits/format/output_buffer.hpp> // IWYU pragma: export
+#include <kstd/bits/format/parse_context.hpp> // IWYU pragma: export
+#include <kstd/bits/format/string.hpp> // IWYU pragma: export
+#include <kstd/bits/format/vformat.hpp> // IWYU pragma: export
#endif \ No newline at end of file
diff --git a/libs/kstd/include/kstd/memory b/libs/kstd/include/kstd/memory
index 493f49a..f108c6d 100644
--- a/libs/kstd/include/kstd/memory
+++ b/libs/kstd/include/kstd/memory
@@ -1,8 +1,8 @@
#ifndef KSTD_MEMORY_HPP
#define KSTD_MEMORY_HPP
-#include "kstd/bits/observer_ptr.hpp" // IWYU pragma: export
-#include "kstd/bits/shared_ptr.hpp" // IWYU pragma: export
-#include "kstd/bits/unique_ptr.hpp" // IWYU pragma: export
+#include <kstd/bits/observer_ptr.hpp> // IWYU pragma: export
+#include <kstd/bits/shared_ptr.hpp> // IWYU pragma: export
+#include <kstd/bits/unique_ptr.hpp> // IWYU pragma: export
#endif \ No newline at end of file
diff --git a/libs/kstd/include/kstd/os/print.hpp b/libs/kstd/include/kstd/os/print.hpp
index b8e0732..36cb43d 100644
--- a/libs/kstd/include/kstd/os/print.hpp
+++ b/libs/kstd/include/kstd/os/print.hpp
@@ -1,8 +1,8 @@
#ifndef KSTD_OS_PRINT_HPP
#define KSTD_OS_PRINT_HPP
-#include "kstd/bits/format/args.hpp"
-#include "kstd/bits/print_sink.hpp"
+#include <kstd/bits/format/args.hpp>
+#include <kstd/bits/print_sink.hpp>
#include <string_view>
diff --git a/libs/kstd/include/kstd/print b/libs/kstd/include/kstd/print
index f91cb04..1033f72 100644
--- a/libs/kstd/include/kstd/print
+++ b/libs/kstd/include/kstd/print
@@ -1,10 +1,9 @@
#ifndef KSTD_PRINT
#define KSTD_PRINT
-#include "bits/print_sink.hpp" // IWYU pragma: export
-#include "os/print.hpp"
-
+#include <kstd/bits/print_sink.hpp> // IWYU pragma: export
#include <kstd/format>
+#include <kstd/os/print.hpp>
#include <type_traits>
diff --git a/libs/kstd/include/kstd/stack b/libs/kstd/include/kstd/stack
index 77e6bfd..02e44ea 100644
--- a/libs/kstd/include/kstd/stack
+++ b/libs/kstd/include/kstd/stack
@@ -1,7 +1,7 @@
#ifndef KSTD_STACK_HPP
#define KSTD_STACK_HPP
-#include "kstd/vector"
+#include <kstd/vector>
#include <initializer_list>
#include <utility>