Skip to content

Commit

Permalink
3rdparty: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Dec 9, 2024
1 parent 66f9c7f commit e6bd926
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ if(OSSIA_SDK)
else()
set(ENV{PKG_CONFIG_PATH} "$ENV{PKG_CONFIG_PATH}:${OSSIA_SDK}/ffmpeg/lib/pkgconfig")
endif()

include_directories("${OSSIA_SDK}/pipewire/include/pipewire-0.3")
include_directories("${OSSIA_SDK}/pipewire/include/spa-0.2")
endif()
Expand Down
7 changes: 7 additions & 0 deletions src/lib/score/serialization/IsTemplate.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,13 @@ struct is_template<T<A1, A2, A3, A4, A5, A6, B>> : std::true_type
{
};

template <
template <class, class, class, class, class, class, class, bool> class T, class A1,
class A2, class A3, class A4, class A5, class A6, class A7, bool B>
struct is_template<T<A1, A2, A3, A4, A5, A6, A7, B>> : std::true_type
{
};

template <class>
struct is_custom_serialized : std::false_type
{
Expand Down
8 changes: 4 additions & 4 deletions src/lib/score/serialization/MapSerialization.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,20 +84,20 @@ struct TSerializer<JSONObject, std::unordered_map<T, U, H, E, A>> : MapSerialize
#if !defined(OSSIA_NO_FAST_CONTAINERS)
template <
class Key, class T, class Hash, class KeyEqual, class AllocatorOrContainer,
class Bucket, bool IsSegmented>
class Bucket, class BC, bool IsSegmented>
struct TSerializer<
DataStream, ankerl::unordered_dense::detail::table<
Key, T, Hash, KeyEqual, AllocatorOrContainer, Bucket, IsSegmented>>
Key, T, Hash, KeyEqual, AllocatorOrContainer, Bucket, BC, IsSegmented>>
: MapSerializer
{
};

template <
class Key, class T, class Hash, class KeyEqual, class AllocatorOrContainer,
class Bucket, bool IsSegmented>
class Bucket, class BC, bool IsSegmented>
struct TSerializer<
JSONObject, ankerl::unordered_dense::detail::table<
Key, T, Hash, KeyEqual, AllocatorOrContainer, Bucket, IsSegmented>>
Key, T, Hash, KeyEqual, AllocatorOrContainer, Bucket, BC, IsSegmented>>
: MapSerializer
{
};
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/score-plugin-js/JS/Qml/QmlObjects.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#include <ossia/detail/math.hpp>
#include <ossia/detail/ssize.hpp>
#include <ossia/network/domain/domain.hpp>
#include <ossia-qt/js_utilities.hpp>

#include <QJSValue>
#include <QObject>
Expand All @@ -32,7 +33,6 @@
#include <verdigris>

class QQuickItem;
W_REGISTER_ARGTYPE(QJSValue)
namespace JS
{
class SCORE_PLUGIN_JS_EXPORT Inlet : public QObject
Expand Down

0 comments on commit e6bd926

Please sign in to comment.