Skip to content

Commit

Permalink
[ci] More CI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed May 30, 2023
1 parent 992a42a commit e2e630c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/ossia-max/src/ossia-max.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ using namespace ossia::max_binding;
void* ossia_max::s_browse_clock;
ZeroconfOscqueryListener ossia_max::s_zeroconf_oscq_listener;
ZeroconfMinuitListener ossia_max::s_zeroconf_minuit_listener;
ossia::fast_hash_map<ossia::net::node_base*, ossia::safe_set<matcher*>>
ossia::hash_map<ossia::net::node_base*, ossia::safe_set<matcher*>>
ossia_max::s_node_matchers_map{};
std::recursive_mutex ossia_max::s_node_matchers_mut;
t_class* ossia_max::ossia_patcher_listener_class;
Expand Down
2 changes: 1 addition & 1 deletion src/ossia-max/src/ossia-max.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ class ossia_max
ossia::safe_vector<client*> clients;
ossia::safe_vector<logger*> loggers;

static ossia::fast_hash_map<ossia::net::node_base*, ossia::safe_set<matcher*>>
static ossia::hash_map<ossia::net::node_base*, ossia::safe_set<matcher*>>
s_node_matchers_map;
static std::recursive_mutex s_node_matchers_mut;

Expand Down
4 changes: 2 additions & 2 deletions src/ossia/dataflow/graph/graph_parallel.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ struct parallel_update
start_node; std::vector<graph_node*> nodes_with_incoming_edges;
tbb::flow::graph flow_graph;
ossia::fast_hash_map<graph_node*, std::unique_ptr<cont_node>> flow_nodes;
ossia::hash_map<graph_node*, std::unique_ptr<cont_node>> flow_nodes;
std::vector<graph_node*> start_nodes;
};
Expand Down Expand Up @@ -234,7 +234,7 @@ flow_graph.emplace(node_exec_logger_bench{cur_state, *perf_map, *logger,
tf::Taskflow flow_graph;
tf::Executor executor;
ossia::fast_hash_map<graph_node*, tf::Task> flow_nodes;
ossia::hash_map<graph_node*, tf::Task> flow_nodes;
};
struct cpptf_exec
Expand Down
8 changes: 4 additions & 4 deletions src/ossia/protocols/libmapper/libmapper_protocol.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ class OSSIA_EXPORT libmapper_server_protocol final : public ossia::net::protocol

mpr_device m_mapper_dev{};

ossia::fast_hash_map<const ossia::net::parameter_base*, mpr_signal> m_inputMap;
ossia::fast_hash_map<const ossia::net::parameter_base*, mpr_signal> m_outputMap;
ossia::hash_map<const ossia::net::parameter_base*, mpr_signal> m_inputMap;
ossia::hash_map<const ossia::net::parameter_base*, mpr_signal> m_outputMap;

std::thread m_thread;
std::atomic_bool m_running{};
Expand Down Expand Up @@ -128,7 +128,7 @@ class OSSIA_EXPORT libmapper_client_protocol final : public ossia::net::protocol
mpr_graph m_db{};
mpr_device m_mapper_dev{};

ossia::fast_hash_map<const ossia::net::parameter_base*, mpr_signal> m_inputMap;
ossia::fast_hash_map<const ossia::net::parameter_base*, mpr_signal> m_outputMap;
ossia::hash_map<const ossia::net::parameter_base*, mpr_signal> m_inputMap;
ossia::hash_map<const ossia::net::parameter_base*, mpr_signal> m_outputMap;
};
}
2 changes: 1 addition & 1 deletion src/ossia/protocols/phidgets/phidgets_protocol.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class OSSIA_EXPORT phidget_protocol : public ossia::net::protocol_base
std::function<void()> m_commandCb;
moodycamel::ReaderWriterQueue<std::function<void()>> m_functionQueue;

ossia::fast_hash_map<PhidgetHandle, ossia::phidget_node*> m_phidgetMap;
ossia::hash_map<PhidgetHandle, ossia::phidget_node*> m_phidgetMap;

public:
phidget_protocol();
Expand Down

0 comments on commit e2e630c

Please sign in to comment.