Skip to content

Commit a98dd51

Browse files
committed
Fix SystemSession::Status forward declarations
1 parent 381c4c0 commit a98dd51

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Software/grab/include/DDuplGrabber.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
MIDL_INTERFACE("29038f61-3839-4626-91fd-086879011a05") IDXGIAdapter1;
4343
_COM_SMARTPTR_TYPEDEF(IDXGIAdapter1, __uuidof(IDXGIAdapter1));
4444
namespace SystemSession {
45-
enum Status;
45+
enum Status : int;
4646
};
4747
enum DDuplGrabberState
4848
{

Software/src/GrabManager.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class TimeEvaluations;
3535
class D3D10Grabber;
3636

3737
namespace BlueLightReduction { class Client; };
38-
namespace SystemSession { enum Status; };
38+
namespace SystemSession { enum Status : int; };
3939

4040
class GrabManager : public QObject
4141
{

Software/src/LedDeviceManager.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
class QTimer;
3333
namespace SystemSession {
34-
enum Status;
34+
enum Status : int;
3535
};
3636
/*!
3737
This class creates \a ILedDevice implementations and manages them after.

0 commit comments

Comments
 (0)