Skip to content

Commit

Permalink
- next attempt at fixing the build
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph-hart committed Jun 6, 2024
1 parent f5e363c commit 34d2ce2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions hi_scripting/scripting/scriptnode/ScriptNodeTestSuite.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,9 @@ namespace matrixtypes
{
template <int C> struct identity
{
static constexpr bool createDisplayValues() { return false; }
void handleDisplayValues(bool, ProcessDataDyn& ) {}

static constexpr bool isFixedChannelMatrix() { return true; }
static constexpr int getNumChannels() { return C; }
static constexpr int getChannel(int index) { return index; }
Expand All @@ -195,6 +198,9 @@ template <int C> struct identity

template <int Index, int C> struct one2all
{
static constexpr bool createDisplayValues() { return false; }
void handleDisplayValues(bool, ProcessDataDyn& ) {}

static constexpr bool isFixedChannelMatrix() { return true; }
static constexpr int getNumChannels() { return C; }
static constexpr int getChannel(int index) { return Index; }
Expand Down

0 comments on commit 34d2ce2

Please sign in to comment.