summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader/ast.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-02-03 06:25:56 +0100
committerGitHub <noreply@github.com>2020-02-03 06:25:56 +0100
commit157eb375a59029d9d515d37bc9dc4370890bb3e9 (patch)
tree8f2a211c419e7446cc162a83b348132fcf478624 /src/video_core/shader/ast.h
parentMerge pull request #3282 from FernandoS27/indexed-samplers (diff)
parentshader: Remove curly braces initializers on shared pointers (diff)
downloadyuzu-157eb375a59029d9d515d37bc9dc4370890bb3e9.tar
yuzu-157eb375a59029d9d515d37bc9dc4370890bb3e9.tar.gz
yuzu-157eb375a59029d9d515d37bc9dc4370890bb3e9.tar.bz2
yuzu-157eb375a59029d9d515d37bc9dc4370890bb3e9.tar.lz
yuzu-157eb375a59029d9d515d37bc9dc4370890bb3e9.tar.xz
yuzu-157eb375a59029d9d515d37bc9dc4370890bb3e9.tar.zst
yuzu-157eb375a59029d9d515d37bc9dc4370890bb3e9.zip
Diffstat (limited to '')
-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{};
};