Browse Source

r600: remove redundant semicolon

Reviewed-By: Gert Wollny <gert.wollny@collabora.com>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
merge-requests/24/head
Nicolai Hähnle 6 years ago
parent
commit
6f0322b16a
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/gallium/drivers/r600/sb/sb_ir.h

+ 1
- 1
src/gallium/drivers/r600/sb/sb_ir.h View File

@@ -1012,7 +1012,7 @@ public:

class alu_node : public node {
protected:
alu_node() : node(NT_OP, NST_ALU_INST) { memset(&bc, 0, sizeof(bc_alu)); };
alu_node() : node(NT_OP, NST_ALU_INST) { memset(&bc, 0, sizeof(bc_alu)); }
public:
bc_alu bc;


Loading…
Cancel
Save