mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[util] Make Fence and Win32Fence final
Otherwise, Josh will keep complaining about this until the end of time.
This commit is contained in:
parent
c9c6b1886b
commit
32ac8a8d51
2 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ namespace dxvk::sync {
|
|||
*
|
||||
* Simple CPU-side fence.
|
||||
*/
|
||||
class Fence : public Signal {
|
||||
class Fence final : public Signal {
|
||||
|
||||
public:
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ namespace dxvk::sync {
|
|||
* CPU-side fence that also has the
|
||||
* ability to signal Win32 events.
|
||||
*/
|
||||
class Win32Fence : public Signal {
|
||||
class Win32Fence final : public Signal {
|
||||
|
||||
public:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue