aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/shader/ast.h
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2020-02-01 22:49:25 -0300
committerReinUsesLisp <reinuseslisp@airmail.cc>2020-02-01 22:52:10 -0300
commit223a89a19f7cd904c79c4070498c5941bcdf0724 (patch)
tree8f2a211c419e7446cc162a83b348132fcf478624 /src/video_core/shader/ast.h
parentb5bbe7e752d5d36839a86638bfaa4b4c348497cd (diff)
shader: Remove curly braces initializers on shared pointers
Diffstat (limited to 'src/video_core/shader/ast.h')
-rw-r--r--src/video_core/shader/ast.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/video_core/shader/ast.h b/src/video_core/shader/ast.h
index a2f0044ba..cca13bcde 100644
--- a/src/video_core/shader/ast.h
+++ b/src/video_core/shader/ast.h
@@ -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{};
};