mirror of https://github.com/AxioDL/metaforce.git
rstl: Organize headers
We can also make includes a little nicer for the compiler by only including logvisor headers when performing debug builds.
This commit is contained in:
parent
b9b9eddd1e
commit
cbcba6f184
|
@ -1,11 +1,14 @@
|
|||
#pragma once
|
||||
|
||||
#include <vector>
|
||||
#include <algorithm>
|
||||
#include <type_traits>
|
||||
#include <cstdlib>
|
||||
#include <optional>
|
||||
#include "logvisor/logvisor.hpp"
|
||||
#include <type_traits>
|
||||
#include <vector>
|
||||
|
||||
#ifndef NDEBUG
|
||||
#include <logvisor/logvisor.hpp>
|
||||
#endif
|
||||
|
||||
namespace rstl {
|
||||
|
||||
|
|
Loading…
Reference in New Issue