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:
Lioncash 2019-10-04 00:08:43 -04:00
parent b9b9eddd1e
commit cbcba6f184
1 changed files with 6 additions and 3 deletions

View File

@ -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 {