There was an error while loading. Please reload this page.
1 parent cce327b commit 2b8c39bCopy full SHA for 2b8c39b
1 file changed
include/NazaraUtils/Signal.hpp
@@ -7,6 +7,7 @@
7
#ifndef NAZARAUTILS_SIGNAL_HPP
8
#define NAZARAUTILS_SIGNAL_HPP
9
10
+#include <NazaraUtils/FixedVector.hpp>
11
#include <functional>
12
#include <memory>
13
#include <vector>
@@ -54,7 +55,7 @@ namespace Nz
54
55
struct Slot;
56
57
using SlotPtr = std::shared_ptr<Slot>;
- using SlotList = std::vector<SlotPtr>;
58
+ using SlotList = HybridVector<SlotPtr, 1>;
59
using SlotListIndex = typename SlotList::size_type;
60
61
struct Slot
0 commit comments