Skip to content

Commit

Permalink
[ci] Fix example build and build outside of score
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-Michaël Celerier committed Sep 23, 2023
1 parent d792d7f commit fb42ca5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/Dataflow/MiniDAW.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ struct tick
auto log = g_exec_log.start_commit();
#endif

st.commit_merged();
st.commit();
}
}
};
Expand Down
1 change: 0 additions & 1 deletion src/ossia/dataflow/execution/execution_policy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
#include <ossia/protocols/midi/midi_device.hpp>
#include <ossia/protocols/midi/midi_protocol.hpp>

#include <QDebug>
namespace ossia
{

Expand Down
4 changes: 3 additions & 1 deletion src/ossia/dataflow/execution_state.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@

namespace ossia
{
execution_state::execution_state() { }
execution_state::execution_state() {
m_policy = std::make_unique<merged_execution_state_policy>();
}

execution_state::~execution_state() { }

Expand Down
1 change: 1 addition & 0 deletions src/ossia/network/oscquery/detail/typetag.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// it. PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
#include <ossia/network/oscquery/detail/typetag.hpp>

#include <oscpack/osc/OscTypes.h>
namespace ossia::oscquery
{

Expand Down
1 change: 0 additions & 1 deletion src/ossia/network/oscquery/detail/typetag.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
#include <ossia/network/dataspace/dataspace_visitors.hpp>
#include <ossia/network/value/value.hpp>

#include <oscpack/osc/OscTypes.h>
namespace ossia::oscquery
{
//! Returns the OSC Typetag associated to an ossia node, if there is a value
Expand Down

0 comments on commit fb42ca5

Please sign in to comment.