Skip to content

Commit

Permalink
ci: msvc fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Dec 18, 2024
1 parent 67bc933 commit 7b2499d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ossia/protocols/osc/osc_generic_protocol.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class osc_generic_bidir_protocol final : public can_learn<ossia::net::protocol_b
{
public:
using osc_configuration = typename OscMode::osc_configuration;
static constexpr bool bundled = requires { typename osc_configuration::bundled{}; };
static constexpr bool bundled = requires { typename osc_configuration::bundled; };
using writer_type = socket_writer<SendSocket>;

osc_generic_bidir_protocol(
Expand Down Expand Up @@ -288,7 +288,7 @@ class osc_generic_server_protocol final : public can_learn<ossia::net::protocol_
{
public:
using osc_configuration = typename OscMode::osc_configuration;
static constexpr bool bundled = requires { typename osc_configuration::bundled{}; };
static constexpr bool bundled = requires { typename osc_configuration::bundled; };
using socket_type = Socket;
using writer_type = socket_writer<socket_type>;

Expand Down Expand Up @@ -403,7 +403,7 @@ class osc_generic_client_protocol : public can_learn<ossia::net::protocol_base>
{
public:
using osc_configuration = typename OscMode::osc_configuration;
static constexpr bool bundled = requires { typename osc_configuration::bundled{}; };
static constexpr bool bundled = requires { typename osc_configuration::bundled; };
using socket_type = Socket;
using writer_type = socket_writer<socket_type>;

Expand Down

0 comments on commit 7b2499d

Please sign in to comment.