We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 302ced7 commit d617c08Copy full SHA for d617c08
pcsx2/GS/GSLzma.h
@@ -1,4 +1,4 @@
1
-// SPDX-FileCopyrightText: 2002-2025 PCSX2 Dev Team
+ // SPDX-FileCopyrightText: 2002-2025 PCSX2 Dev Team
2
// SPDX-License-Identifier: GPL-3.0+
3
4
#pragma once
@@ -120,14 +120,6 @@ namespace GSDumpTypes
120
#undef DEF_GIFReg
121
// clang-format on
122
123
- template <typename Output, typename Input>
124
- requires(sizeof(Input) == sizeof(Output))
125
- static constexpr Output BitCast(Input input)
126
- {
127
- Output output;
128
- memcpy(&output, &input, sizeof(input));
129
- return output;
130
- }
131
template <typename Output = u32>
132
static constexpr Output GetBits(u64 value, u32 shift, u32 numbits)
133
{
0 commit comments