Use a precompiled header for many std includes.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-09-25 11:06:55 +02:00
parent 87706ffae0
commit 51c7ba1c50
13 changed files with 24 additions and 34 deletions

View File

@@ -1,7 +1,6 @@
#ifndef ARBUTILS_BASICSTRINGVIEW_HPP
#define ARBUTILS_BASICSTRINGVIEW_HPP
#include <iostream>
#include <string>
/// \defgroup Strings Strings
/// \brief Group of non-editable strings with faster hashing.

View File

@@ -1,5 +1,4 @@
#include "StringView.hpp"
#include <memory>
namespace ArbUt {
std::shared_ptr<__ConstStringCharHolder> StringView::__emptyString =

View File

@@ -1,11 +1,6 @@
#ifndef ARBUTILS_STRINGVIEW_HPP
#define ARBUTILS_STRINGVIEW_HPP
#include <cstddef>
#include <cstdint>
#include <cstring>
#include <memory>
#include <string_view>
#include "BasicStringView.hpp"
#if WINDOWS

View File

@@ -1,7 +1,6 @@
#ifndef ARBUTILS_STRINGVIEWLITERAL_HPP
#define ARBUTILS_STRINGVIEWLITERAL_HPP
#include <cstdint>
#include "BasicStringView.hpp"
#include "StringView.hpp"