mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
[util] Fix enum declaration
This commit is contained in:
parent
22052106d8
commit
8c7da07085
1 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <cstddef>
|
||||||
|
#include <cstdint>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "com_include.h"
|
#include "com_include.h"
|
||||||
|
@ -9,7 +11,7 @@ namespace dxvk {
|
||||||
/**
|
/**
|
||||||
* \brief COM private data entry type
|
* \brief COM private data entry type
|
||||||
*/
|
*/
|
||||||
enum ComPrivateDataType {
|
enum class ComPrivateDataType : uint32_t {
|
||||||
None,
|
None,
|
||||||
Data,
|
Data,
|
||||||
Iface,
|
Iface,
|
||||||
|
|
Loading…
Add table
Reference in a new issue