Skip to content

Commit

Permalink
[core] Use tcb::span instead of std::
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Aug 9, 2023
1 parent 8f74bc3 commit 0276ac5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ossia/network/osc/detail/osc_protocol_common.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ struct osc_protocol_server : osc_protocol_common<OscVersion>

template <typename T, typename Writer>
static bool
push_bundle(T& self, Writer writer, std::span<ossia::bundle_element> addresses)
push_bundle(T& self, Writer writer, tcb::span<ossia::bundle_element> addresses)
{
if(auto bundle = make_bundle(bundle_server_policy<OscVersion>{}, addresses))
{
Expand All @@ -195,7 +195,7 @@ struct osc_protocol_server : osc_protocol_common<OscVersion>

template <typename T, typename Writer>
static bool
push_bundle_bounded(T& self, Writer writer, std::span<ossia::bundle_element> addresses)
push_bundle_bounded(T& self, Writer writer, tcb::span<ossia::bundle_element> addresses)
{
return make_bundle_bounded(
bundle_bounded_server_policy<OscVersion>{}, addresses,
Expand Down

0 comments on commit 0276ac5

Please sign in to comment.