Style fixes.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2020-06-26 16:27:17 +02:00
parent e52b824a51
commit 4ffe9f10a3
Signed by: Deukhoofd
GPG Key ID: ADF2E9256009EDCE
2 changed files with 1 additions and 3 deletions

View File

@ -1,4 +1,3 @@
#include "StringView.hpp"
ArbUt::__ConstStringCharHolder* ArbUt::StringView::__emptyString =
new __ConstStringCharHolder(std::string_view("", 0));
ArbUt::__ConstStringCharHolder* ArbUt::StringView::__emptyString = new __ConstStringCharHolder(std::string_view("", 0));

View File

@ -1,7 +1,6 @@
#ifdef TESTS_BUILD
#include <cstring>
#include "../extern/catch.hpp"
#include "../src/StringView.hpp"
#include "../src/Enum.hpp"
ENUM(TestEnum, uint8_t, Val1, Val2, Val3)