shader: Remove curly braces initializers on shared pointers

This commit is contained in:
ReinUsesLisp 2020-02-01 22:49:25 -03:00
parent b5bbe7e752
commit 223a89a19f
5 changed files with 12 additions and 12 deletions

View file

@ -65,8 +65,8 @@ public:
void DetachSegment(ASTNode start, ASTNode end);
void Remove(ASTNode node);
ASTNode first{};
ASTNode last{};
ASTNode first;
ASTNode last;
};
class ASTProgram {
@ -299,9 +299,9 @@ private:
friend class ASTZipper;
ASTData data;
ASTNode parent{};
ASTNode next{};
ASTNode previous{};
ASTNode parent;
ASTNode next;
ASTNode previous;
ASTZipper* manager{};
};