Fix unit tests build

This commit is contained in:
ado 2024-02-18 19:36:41 +01:00
parent baf4317ffa
commit 417a03a8a4

View File

@ -5,7 +5,6 @@
#include <sstream> #include <sstream>
#include <string> #include <string>
#include <vector> #include <vector>
#include <ss/parser.hpp>
#ifdef CMAKE_GITHUB_CI #ifdef CMAKE_GITHUB_CI
#include <doctest/doctest.h> #include <doctest/doctest.h>
@ -13,6 +12,11 @@
#include <doctest.h> #include <doctest.h>
#endif #endif
namespace ss {
template <typename... Ts>
class parser;
} /* ss */
namespace { namespace {
struct buffer { struct buffer {
std::string data_; std::string data_;
@ -185,5 +189,4 @@ std::tuple<ss::parser<Ts...>, std::string> make_parser(
} }
} }
} }
} /* namespace */ } /* namespace */