Преглед изворни кода

Missing `#include`

default_compile_flags
vector-of-bool пре 5 година
родитељ
комит
4d6edd47e2
1 измењених фајлова са 4 додато и 3 уклоњено
  1. +4
    -3
      src/dds/deps.cpp

+ 4
- 3
src/dds/deps.cpp Прегледај датотеку

#include <range/v3/view/transform.hpp> #include <range/v3/view/transform.hpp>
#include <spdlog/spdlog.h> #include <spdlog/spdlog.h>


#include <sstream>
#include <cctype> #include <cctype>
#include <map> #include <map>
#include <set> #include <set>
return iv.low.to_string() + " < " + iv.high.to_string(); return iv.low.to_string() + " < " + iv.high.to_string();
} }


} // namespace
} // namespace


std::string dependency::to_string() const noexcept { std::string dependency::to_string() const noexcept {
std::stringstream strm; std::stringstream strm;
} }


strm << "["; strm << "[";
auto iv_it = versions.iter_intervals();
auto it = iv_it.begin();
auto iv_it = versions.iter_intervals();
auto it = iv_it.begin();
const auto stop = iv_it.end(); const auto stop = iv_it.end();
while (it != stop) { while (it != stop) {
strm << "(" << iv_string(*it) << ")"; strm << "(" << iv_string(*it) << ")";

Loading…
Откажи
Сачувај