Skip to content

Commit e6049a8

Browse files
Update constructors to support D 2.105.0+
1 parent a1cf588 commit e6049a8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

source/inochi2d/core/nodes/drivers/package.d

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,9 @@ public import inochi2d.core.nodes.drivers.simplephysics;
1717
*/
1818
@TypeId("Driver")
1919
abstract class Driver : Node {
20-
private:
20+
protected:
2121
this() { }
2222

23-
protected:
2423
/**
2524
Constructs a new Driver node
2625
*/

source/inochi2d/core/nodes/package.d

+2-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ void inClearUUIDs() {
7474
@TypeId("Node")
7575
class Node : ISerializable {
7676
private:
77-
this() { }
7877

7978
@Ignore
8079
Puppet puppet_;
@@ -98,6 +97,8 @@ private:
9897
string nodePath_;
9998

10099
protected:
100+
this() { }
101+
101102
bool preProcessed = false;
102103
bool postProcessed = false;
103104

0 commit comments

Comments
 (0)