Skip to content

Commit

Permalink
Missing include
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Aug 14, 2024
1 parent e6a15ba commit 679d336
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Led/Device.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@
#include <unistd.h>
#include <wobjectimpl.h>

#include <span>

W_OBJECT_IMPL(Led::DeviceImplementation)

namespace Led
Expand Down Expand Up @@ -166,7 +168,6 @@ struct led_protocol : public ossia::net::protocol_base
auto node = strip->create_child(std::to_string(i));
node->set_parameter(std::make_unique<pixel_parameter>(
*node, std::span<uint8_t, 3>(m_rgb_data.data() + i * 3, 3)));
// pixels.push_back(node->get_parameter());
}

if (m_fd >= 0)
Expand Down

0 comments on commit 679d336

Please sign in to comment.