diff options
author | bunnei <bunneidev@gmail.com> | 2020-11-06 10:33:13 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-06 10:33:13 -0800 |
commit | 91a45834fd10620a9c3bb567183682a9e6a88217 (patch) | |
tree | 162d9bc5ac1b219f9534374a6c6e75a202aca6dd /src/video_core/gpu.h | |
parent | 0b75ec531629f9b78d4016e21de8c8d55476fade (diff) | |
parent | 6f006d051e1fad075048ea5664e1ef0605e48a46 (diff) |
Merge pull request #4891 from lioncash/clang2
General: Fix clang build
Diffstat (limited to 'src/video_core/gpu.h')
-rw-r--r-- | src/video_core/gpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h index 5444b49f3..cf5235a79 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h @@ -273,7 +273,7 @@ public: BitField<0, 1, FenceOperation> op; BitField<8, 24, u32> syncpoint_id; - static constexpr CommandHeader Build(FenceOperation op, u32 syncpoint_id) { + static CommandHeader Build(FenceOperation op, u32 syncpoint_id) { FenceAction result{}; result.op.Assign(op); result.syncpoint_id.Assign(syncpoint_id); |