mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-12 22:38:10 -05:00
shader: Remove curly braces initializers on shared pointers
This commit is contained in:
@ -41,8 +41,8 @@ std::optional<std::pair<Node, Node>> DecoupleIndirectRead(const OperationNode& o
|
||||
if (operation.GetCode() != OperationCode::UAdd) {
|
||||
return std::nullopt;
|
||||
}
|
||||
Node gpr{};
|
||||
Node offset{};
|
||||
Node gpr;
|
||||
Node offset;
|
||||
ASSERT(operation.GetOperandsCount() == 2);
|
||||
for (std::size_t i = 0; i < operation.GetOperandsCount(); i++) {
|
||||
Node operand = operation[i];
|
||||
|
Reference in New Issue
Block a user