Skip to content

Commit

Permalink
Update constructors to support D 2.105.0+
Browse files Browse the repository at this point in the history
  • Loading branch information
LunaTheFoxgirl committed May 26, 2024
1 parent a1cf588 commit e6049a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions source/inochi2d/core/nodes/drivers/package.d
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,9 @@ public import inochi2d.core.nodes.drivers.simplephysics;
*/
@TypeId("Driver")
abstract class Driver : Node {
private:
protected:
this() { }

protected:
/**
Constructs a new Driver node
*/
Expand Down
3 changes: 2 additions & 1 deletion source/inochi2d/core/nodes/package.d
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ void inClearUUIDs() {
@TypeId("Node")
class Node : ISerializable {
private:
this() { }

@Ignore
Puppet puppet_;
Expand All @@ -98,6 +97,8 @@ private:
string nodePath_;

protected:
this() { }

bool preProcessed = false;
bool postProcessed = false;

Expand Down

0 comments on commit e6049a8

Please sign in to comment.