1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-01-18 20:52:10 +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:
Philip Rebohle 2019-11-27 12:31:17 +01:00
parent c9c6b1886b
commit 32ac8a8d51
No known key found for this signature in database
GPG Key ID: C8CC613427A31C99
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ namespace dxvk::sync {
*
* Simple CPU-side fence.
*/
class Fence : public Signal {
class Fence final : public Signal {
public:

View File

@ -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: