aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/Node.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/Node.hpp')
-rw-r--r--src/engine/Node.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/engine/Node.hpp b/src/engine/Node.hpp
index 8a76bf7..39f23e6 100644
--- a/src/engine/Node.hpp
+++ b/src/engine/Node.hpp
@@ -22,9 +22,9 @@
#include "machina/types.hpp"
#include "Action.hpp"
+#include "MIDISink.hpp"
#include "Schrodinbit.hpp"
#include "Stateful.hpp"
-#include "MIDISink.hpp"
namespace machina {
@@ -83,8 +83,9 @@ public:
inline void set_changed() { _changed = true; }
struct EdgeHeadOrder {
- inline bool operator()(const SPtr<Edge>& a, const SPtr<Edge>& b) {
- return a < b;
+ inline bool operator()(const SPtr<const Edge>& a,
+ const SPtr<const Edge>& b) {
+ return a.get() < b.get();
}
};