Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions include/flow/graph_builder.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#include <stdx/cx_multimap.hpp>
#include <stdx/cx_set.hpp>
#include <stdx/cx_vector.hpp>
#include <stdx/span.hpp>
#include <stdx/tuple_algorithms.hpp>
#include <stdx/type_traits.hpp>
#include <stdx/utility.hpp>
Expand All @@ -20,7 +21,6 @@
#include <cstddef>
#include <iterator>
#include <optional>
#include <span>
#include <utility>

namespace flow {
Expand Down Expand Up @@ -186,9 +186,9 @@ struct graph_builder {
if (not g.empty()) {
return {};
}
return std::optional<Output>{
std::in_place,
std::span{std::cbegin(ordered_list), std::size(ordered_list)}};
using span_t =
stdx::span<typename Graph::key_type const, Graph::capacity()>;
return std::optional<Output>{std::in_place, span_t{ordered_list}};
}

constexpr static void check_for_missing_nodes(auto nodes,
Expand Down
6 changes: 3 additions & 3 deletions include/flow/impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
#include <log/log.hpp>

#include <stdx/cx_vector.hpp>
#include <stdx/span.hpp>

#include <algorithm>
#include <cstddef>
#include <iterator>
#include <span>
#include <type_traits>

namespace flow {
Expand Down Expand Up @@ -60,8 +60,8 @@ template <stdx::ct_string Name, std::size_t NumSteps> class impl {
*
* @see flow::builder
*/
constexpr explicit(true) impl(std::span<node_t const> newMilestones) {
CIB_ASSERT(NumSteps >= std::size(newMilestones));
constexpr explicit(true)
impl(stdx::span<node_t const, NumSteps> newMilestones) {
if constexpr (loggingEnabled) {
for (auto const &milestone : newMilestones) {
functionPtrs.push_back(milestone.log_name);
Expand Down
6 changes: 2 additions & 4 deletions include/seq/impl.hpp
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
#pragma once

#include <log/log.hpp>
#include <seq/step.hpp>

#include <stdx/ct_string.hpp>
#include <stdx/cx_vector.hpp>
#include <stdx/span.hpp>

#include <array>
#include <cstddef>
#include <iterator>
#include <span>

namespace seq {
enum struct direction { FORWARD = 0, BACKWARD = 1 };
Expand All @@ -24,8 +23,7 @@ template <stdx::ct_string, std::size_t NumSteps> struct impl {

using node_t = rt_step;

constexpr explicit(true) impl(std::span<node_t const> steps) {
CIB_ASSERT(NumSteps >= std::size(steps));
constexpr explicit(true) impl(stdx::span<node_t const, NumSteps> steps) {
for (auto const &step : steps) {
_forward_steps.push_back(step.forward_ptr);
_backward_steps.push_back(step.backward_ptr);
Expand Down