diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-09-03 14:14:17 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-09-03 14:36:28 +0200 |
| commit | 28114ae949130d39380a80800c60b5b334d61b19 (patch) | |
| tree | eade2e52c744cfa63ac0bc9888583c998cdd4751 /libs | |
| parent | e9c8e851eedeabe82878ef9d41042731c4d17e6d (diff) | |
| download | kernel-28114ae949130d39380a80800c60b5b334d61b19.tar.xz kernel-28114ae949130d39380a80800c60b5b334d61b19.zip | |
chore: fix header guards
Diffstat (limited to 'libs')
| -rw-r--r-- | libs/kstd/kstd/bits/mutex/lock_guard.hpp | 4 | ||||
| -rw-r--r-- | libs/kstd/kstd/cstring.hpp | 4 | ||||
| -rw-r--r-- | libs/kstd/kstd/posix.hpp | 4 | ||||
| -rw-r--r-- | libs/kstd/kstd/print.hpp | 4 | ||||
| -rw-r--r-- | libs/kstd/kstd/ranges.hpp | 4 |
5 files changed, 10 insertions, 10 deletions
diff --git a/libs/kstd/kstd/bits/mutex/lock_guard.hpp b/libs/kstd/kstd/bits/mutex/lock_guard.hpp index b4762c36..40221b0f 100644 --- a/libs/kstd/kstd/bits/mutex/lock_guard.hpp +++ b/libs/kstd/kstd/bits/mutex/lock_guard.hpp @@ -1,5 +1,5 @@ -#ifndef KSTD_BITS_MUTEX_LOCK_GUARD -#define KSTD_BITS_MUTEX_LOCK_GUARD +#ifndef KSTD_BITS_MUTEX_LOCK_GUARD_HPP +#define KSTD_BITS_MUTEX_LOCK_GUARD_HPP // IWYU pragma: private, include <kstd/mutex.hpp> diff --git a/libs/kstd/kstd/cstring.hpp b/libs/kstd/kstd/cstring.hpp index 9678f77f..bc83181b 100644 --- a/libs/kstd/kstd/cstring.hpp +++ b/libs/kstd/kstd/cstring.hpp @@ -1,5 +1,5 @@ -#ifndef KSTD_CSTRING -#define KSTD_CSTRING +#ifndef KSTD_CSTRING_HPP +#define KSTD_CSTRING_HPP #include <cstddef> diff --git a/libs/kstd/kstd/posix.hpp b/libs/kstd/kstd/posix.hpp index 12bd5ec0..fc66a4b0 100644 --- a/libs/kstd/kstd/posix.hpp +++ b/libs/kstd/kstd/posix.hpp @@ -1,5 +1,5 @@ -#ifndef KSTD_CERRNO_HPP -#define KSTD_CERRNO_HPP +#ifndef KSTD_POSIX_HPP +#define KSTD_POSIX_HPP namespace kstd::posix { diff --git a/libs/kstd/kstd/print.hpp b/libs/kstd/kstd/print.hpp index 0d37efbe..10adcf43 100644 --- a/libs/kstd/kstd/print.hpp +++ b/libs/kstd/kstd/print.hpp @@ -1,5 +1,5 @@ -#ifndef KSTD_PRINT -#define KSTD_PRINT +#ifndef KSTD_PRINT_HPP +#define KSTD_PRINT_HPP #include <kstd/bits/print_sink.hpp> // IWYU pragma: export #include <kstd/format.hpp> diff --git a/libs/kstd/kstd/ranges.hpp b/libs/kstd/kstd/ranges.hpp index 78c3adbf..64b73968 100644 --- a/libs/kstd/kstd/ranges.hpp +++ b/libs/kstd/kstd/ranges.hpp @@ -1,5 +1,5 @@ -#ifndef KSTD_RANGES -#define KSTD_RANGES +#ifndef KSTD_RANGES_HPP +#define KSTD_RANGES_HPP #include <ranges> // IWYU pragma: export |
