We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f49d770 commit 986426dCopy full SHA for 986426d
include/dspatch/Circuit.h
@@ -38,8 +38,8 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38
39
#include <algorithm>
40
#include <condition_variable>
41
-#include <set>
42
#include <thread>
+#include <unordered_set>
43
44
namespace DSPatch
45
{
@@ -438,7 +438,7 @@ class Circuit final
438
439
AutoTickThread _autoTickThread;
440
441
- std::set<DSPatch::Component::SPtr> _componentsSet;
+ std::unordered_set<DSPatch::Component::SPtr> _componentsSet;
442
443
std::vector<DSPatch::Component*> _components;
444
std::vector<DSPatch::Component*> _componentsParallel;
0 commit comments