aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/shader/decode/arithmetic_integer.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-02-03 00:25:56 -0500
committerGitHub <noreply@github.com>2020-02-03 00:25:56 -0500
commit157eb375a59029d9d515d37bc9dc4370890bb3e9 (patch)
tree8f2a211c419e7446cc162a83b348132fcf478624 /src/video_core/shader/decode/arithmetic_integer.cpp
parentb5bbe7e752d5d36839a86638bfaa4b4c348497cd (diff)
parent223a89a19f7cd904c79c4070498c5941bcdf0724 (diff)
Merge pull request #3370 from ReinUsesLisp/node-shared-ptr
shader: Remove curly braces initializers on shared pointers
Diffstat (limited to 'src/video_core/shader/decode/arithmetic_integer.cpp')
-rw-r--r--src/video_core/shader/decode/arithmetic_integer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/shader/decode/arithmetic_integer.cpp b/src/video_core/shader/decode/arithmetic_integer.cpp
index 371fae127..e60875cc4 100644
--- a/src/video_core/shader/decode/arithmetic_integer.cpp
+++ b/src/video_core/shader/decode/arithmetic_integer.cpp
@@ -297,7 +297,7 @@ void ShaderIR::WriteLop3Instruction(NodeBlock& bb, Register dest, Node op_a, Nod
const Node one = Immediate(1);
const Node two = Immediate(2);
- Node value{};
+ Node value;
for (u32 i = 0; i < lop_iterations; ++i) {
const Node shift_amount = Immediate(i);