Skip to content

Commit 2d1db0e

Browse files
committed
Fixed warning.
1 parent 2254588 commit 2d1db0e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

NativeCore/Windows/Input.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ Keys mapping[];
1111
class DirectInput
1212
{
1313
public:
14+
DirectInput() = default;
15+
16+
DirectInput(const DirectInput&) = delete;
17+
DirectInput(const DirectInput&&) = delete;
18+
DirectInput& operator=(DirectInput const&) = delete;
19+
DirectInput& operator=(DirectInput const&&) = delete;
20+
1421
~DirectInput()
1522
{
1623
if (keyboardDevice)

0 commit comments

Comments
 (0)