From 91fdc53a318cbc3127cf0efa85981042e7a185e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Micha=C3=ABl=20Celerier?= Date: Wed, 7 Jun 2023 11:53:31 -0400 Subject: [PATCH] [ci] Build fixes --- src/ossia-max/src/remote.cpp | 8 ++++---- src/ossia/preset/cue.hpp | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ossia-max/src/remote.cpp b/src/ossia-max/src/remote.cpp index 810c3ae334f..425920a08ab 100644 --- a/src/ossia-max/src/remote.cpp +++ b/src/ossia-max/src/remote.cpp @@ -141,7 +141,7 @@ void remote::assist(remote* x, void* b, long m, long a, char* s) { if(m == ASSIST_INLET) { - sprintf(s, "Remote input", a); + sprintf(s, "Remote input"); } else { @@ -149,13 +149,13 @@ void remote::assist(remote* x, void* b, long m, long a, char* s) { case 0: sprintf( - s, "Remote parameter deferred value (with set prefix for UI connection)", a); + s, "Remote parameter deferred value (with set prefix for UI connection)"); break; case 1: - sprintf(s, "Remote parameter value", a); + sprintf(s, "Remote parameter value"); break; case 2: - sprintf(s, "Dumpout", a); + sprintf(s, "Dumpout"); break; default: break; diff --git a/src/ossia/preset/cue.hpp b/src/ossia/preset/cue.hpp index dc4e7bc4ee5..d4ed0297d97 100644 --- a/src/ossia/preset/cue.hpp +++ b/src/ossia/preset/cue.hpp @@ -56,7 +56,7 @@ class OSSIA_EXPORT namespace_selection : Nano::Observer ossia::net::device_base* dev{}; - std::unordered_set m_selection; + ossia::hash_set m_selection; }; class OSSIA_EXPORT cues// : public namespace_selection