Skip to content

Commit

Permalink
xrCore: remove unnecessary include
Browse files Browse the repository at this point in the history
  • Loading branch information
eagleivg committed May 25, 2018
1 parent 4d135e5 commit 1d753eb
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/xrCore/Threading/Event.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#include "stdafx.h"
#include "Event.hpp"
#if defined(WINDOWS)
#include <windows.h>

Event::Event() noexcept { handle = (void*)CreateEvent(NULL, FALSE, FALSE, NULL); }
Event::~Event() noexcept { CloseHandle(handle); }
Expand Down

0 comments on commit 1d753eb

Please sign in to comment.