forked from OctaForge/libostd
use <> for includes everywhere
This commit is contained in:
parent
58a448b79a
commit
2ce488002a
15 changed files with 39 additions and 39 deletions
|
@ -18,6 +18,8 @@
|
|||
#ifndef OSTD_ALGORITHM_HH
|
||||
#define OSTD_ALGORITHM_HH
|
||||
|
||||
#include <ostd/unit_test.hh>
|
||||
|
||||
#include <cmath>
|
||||
#include <utility>
|
||||
#include <functional>
|
||||
|
@ -28,9 +30,7 @@
|
|||
#include <vector>
|
||||
#endif
|
||||
|
||||
#include "ostd/unit_test.hh"
|
||||
|
||||
#include "ostd/range.hh"
|
||||
#include <ostd/range.hh>
|
||||
|
||||
#define OSTD_TEST_MODULE libostd_algorithm
|
||||
|
||||
|
|
|
@ -29,10 +29,10 @@
|
|||
#include <functional>
|
||||
#include <type_traits>
|
||||
|
||||
#include "ostd/algorithm.hh"
|
||||
#include "ostd/format.hh"
|
||||
#include "ostd/string.hh"
|
||||
#include "ostd/io.hh"
|
||||
#include <ostd/algorithm.hh>
|
||||
#include <ostd/format.hh>
|
||||
#include <ostd/string.hh>
|
||||
#include <ostd/io.hh>
|
||||
|
||||
namespace ostd {
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
#include <stdexcept>
|
||||
#include <memory>
|
||||
|
||||
#include "ostd/generic_condvar.hh"
|
||||
#include <ostd/generic_condvar.hh>
|
||||
|
||||
namespace ostd {
|
||||
|
||||
|
|
|
@ -50,10 +50,10 @@
|
|||
#include <exception>
|
||||
#include <type_traits>
|
||||
|
||||
#include "ostd/platform.hh"
|
||||
#include "ostd/coroutine.hh"
|
||||
#include "ostd/channel.hh"
|
||||
#include "ostd/generic_condvar.hh"
|
||||
#include <ostd/platform.hh>
|
||||
#include <ostd/coroutine.hh>
|
||||
#include <ostd/channel.hh>
|
||||
#include <ostd/generic_condvar.hh>
|
||||
|
||||
namespace ostd {
|
||||
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
#include <new>
|
||||
#include <algorithm>
|
||||
|
||||
#include "ostd/platform.hh"
|
||||
#include <ostd/platform.hh>
|
||||
|
||||
#ifdef OSTD_USE_VALGRIND
|
||||
# include <valgrind/valgrind.h>
|
||||
|
|
|
@ -37,10 +37,10 @@
|
|||
#include <type_traits>
|
||||
#include <optional>
|
||||
|
||||
#include "ostd/platform.hh"
|
||||
#include "ostd/range.hh"
|
||||
#include <ostd/platform.hh>
|
||||
#include <ostd/range.hh>
|
||||
|
||||
#include "ostd/context_stack.hh"
|
||||
#include <ostd/context_stack.hh>
|
||||
|
||||
namespace ostd {
|
||||
|
||||
|
|
|
@ -18,8 +18,8 @@
|
|||
#ifndef OSTD_ENVIRON_HH
|
||||
#define OSTD_ENVIRON_HH
|
||||
|
||||
#include "ostd/platform.hh"
|
||||
#include "ostd/string.hh"
|
||||
#include <ostd/platform.hh>
|
||||
#include <ostd/string.hh>
|
||||
|
||||
#include <optional>
|
||||
#include <string>
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
#include <SDL2/SDL.h>
|
||||
#endif
|
||||
|
||||
#include "ostd/stream.hh"
|
||||
#include <ostd/stream.hh>
|
||||
|
||||
namespace ostd {
|
||||
namespace sdl {
|
||||
|
|
|
@ -40,9 +40,9 @@ namespace ostd {
|
|||
# error "Unsupported platform"
|
||||
#endif
|
||||
|
||||
#include "ostd/platform.hh"
|
||||
#include "ostd/range.hh"
|
||||
#include "ostd/format.hh"
|
||||
#include <ostd/platform.hh>
|
||||
#include <ostd/range.hh>
|
||||
#include <ostd/format.hh>
|
||||
|
||||
namespace ostd {
|
||||
|
||||
|
|
|
@ -26,8 +26,8 @@
|
|||
#include <locale>
|
||||
#include <ios>
|
||||
|
||||
#include "ostd/algorithm.hh"
|
||||
#include "ostd/string.hh"
|
||||
#include <ostd/algorithm.hh>
|
||||
#include <ostd/string.hh>
|
||||
|
||||
namespace ostd {
|
||||
|
||||
|
|
|
@ -28,10 +28,10 @@
|
|||
#include <cstdio>
|
||||
#include <cerrno>
|
||||
|
||||
#include "ostd/platform.hh"
|
||||
#include "ostd/string.hh"
|
||||
#include "ostd/stream.hh"
|
||||
#include "ostd/format.hh"
|
||||
#include <ostd/platform.hh>
|
||||
#include <ostd/string.hh>
|
||||
#include <ostd/stream.hh>
|
||||
#include <ostd/format.hh>
|
||||
|
||||
namespace ostd {
|
||||
|
||||
|
|
|
@ -20,10 +20,10 @@
|
|||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "ostd/platform.hh"
|
||||
#include "ostd/string.hh"
|
||||
#include "ostd/range.hh"
|
||||
#include "ostd/io.hh"
|
||||
#include <ostd/platform.hh>
|
||||
#include <ostd/string.hh>
|
||||
#include <ostd/range.hh>
|
||||
#include <ostd/io.hh>
|
||||
|
||||
namespace ostd {
|
||||
|
||||
|
|
|
@ -53,7 +53,7 @@
|
|||
#ifndef OSTD_RANGE_HH
|
||||
#define OSTD_RANGE_HH
|
||||
|
||||
#include "ostd/unit_test.hh"
|
||||
#include <ostd/unit_test.hh>
|
||||
|
||||
#include <cstddef>
|
||||
#include <new>
|
||||
|
|
|
@ -42,15 +42,15 @@
|
|||
#include <stdexcept>
|
||||
#include <system_error>
|
||||
|
||||
#include "ostd/platform.hh"
|
||||
#include <ostd/platform.hh>
|
||||
|
||||
#ifndef OSTD_PLATFORM_WIN32
|
||||
#include <sys/types.h>
|
||||
#endif
|
||||
|
||||
#include "ostd/range.hh"
|
||||
#include "ostd/string.hh"
|
||||
#include "ostd/format.hh"
|
||||
#include <ostd/range.hh>
|
||||
#include <ostd/string.hh>
|
||||
#include <ostd/format.hh>
|
||||
|
||||
namespace ostd {
|
||||
|
||||
|
|
|
@ -59,8 +59,8 @@
|
|||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
#include "ostd/range.hh"
|
||||
#include "ostd/algorithm.hh"
|
||||
#include <ostd/range.hh>
|
||||
#include <ostd/algorithm.hh>
|
||||
|
||||
namespace ostd {
|
||||
|
||||
|
|
Loading…
Reference in a new issue