Skip to content

Commit

Permalink
Added missing include.
Browse files Browse the repository at this point in the history
  • Loading branch information
5cript committed Jan 8, 2024
1 parent 06ea66b commit 4fe66b2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/roar/mechanics/ranges.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
#include <boost/spirit/home/x3.hpp>
#include <boost/fusion/adapted/struct.hpp>

#include <sstream>

BOOST_FUSION_ADAPT_STRUCT(Roar::Ranges, unit, ranges)
BOOST_FUSION_ADAPT_STRUCT(Roar::Ranges::Range, start, end)

Expand All @@ -21,7 +23,7 @@ namespace Roar

BOOST_SPIRIT_DEFINE(ranges);
}
//##################################################################################################################
// ##################################################################################################################
std::uint64_t Ranges::Range::size() const
{
return end - start;
Expand All @@ -33,7 +35,7 @@ namespace Roar
sstr << start << '-' << end;
return sstr.str();
}
//##################################################################################################################
// ##################################################################################################################
std::optional<Ranges> Ranges::fromString(std::string const& str)
{
using namespace std::string_literals;
Expand Down

0 comments on commit 4fe66b2

Please sign in to comment.