aboutsummaryrefslogtreecommitdiff
path: root/src/video_core/engines/shader_bytecode.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-09 20:39:30 -0400
committerLioncash <mathew1800@gmail.com>2018-08-09 20:45:48 -0400
commitb8c43b608030dd3e52b792d7d6efd72f39723901 (patch)
treec484fcc244d92470819efccf0ec1c6d1780f240f /src/video_core/engines/shader_bytecode.h
parent5191c20b71310fcaea70a32e20ccebdeb50e145f (diff)
video_core: Use variable template variants of type_traits interfaces where applicable
Diffstat (limited to 'src/video_core/engines/shader_bytecode.h')
-rw-r--r--src/video_core/engines/shader_bytecode.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/video_core/engines/shader_bytecode.h b/src/video_core/engines/shader_bytecode.h
index 3d4557b7e..3e409c2e1 100644
--- a/src/video_core/engines/shader_bytecode.h
+++ b/src/video_core/engines/shader_bytecode.h
@@ -477,8 +477,7 @@ union Instruction {
u64 value;
};
static_assert(sizeof(Instruction) == 0x8, "Incorrect structure size");
-static_assert(std::is_standard_layout<Instruction>::value,
- "Structure does not have standard layout");
+static_assert(std::is_standard_layout_v<Instruction>, "Instruction is not standard layout");
class OpCode {
public: