Skip to content

Commit

Permalink
[ci] Add missing header
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Oct 15, 2024
1 parent 48cc245 commit f3c0285
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/ossia-qt/qml_engine_functions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#include <ossia/dataflow/midi_port.hpp>
#include <ossia/dataflow/typed_value.hpp>
#include <ossia/dataflow/value_port.hpp>
#include <ossia/detail/algorithms.hpp>
#include <ossia/detail/apply.hpp>
#include <ossia/network/common/debug.hpp>
#include <ossia/network/value/value.hpp>
Expand Down Expand Up @@ -49,9 +50,6 @@ const ossia::destination_t& qml_engine_functions::find_address(const QString& st
// Split in devices
auto dev = ossia::find_if(
devices, [devname = str.mid(0, d).toStdString()](const auto& dev) {
qDebug().noquote().nospace()
<< "device name? '" << dev->get_name() << "' want: " << devname
<< (dev->get_name() == devname);
return dev->get_name() == devname;
});

Expand Down

0 comments on commit f3c0285

Please sign in to comment.