Removed unused variables

This commit is contained in:
Benjamin Höglinger-Stelzer
2019-05-28 21:06:15 +02:00
parent 435fa9750b
commit 267c0cc9d9
3 changed files with 1 additions and 2 deletions

1
.gitignore vendored
View File

@@ -47,3 +47,4 @@
/src/Release_DLL
/app/Tester/Debug
/Debug
/app/Tester/x64/Debug

View File

@@ -37,7 +37,6 @@ NotificationRequestPool::NotificationRequestPool(
) :
client_(client),
target_(target),
callback_(callback),
stop_(false)
{
// prepare array of handles and request wrappers

View File

@@ -41,7 +41,6 @@ class NotificationRequestPool
PVIGEM_CLIENT client_;
PVIGEM_TARGET target_;
FARPROC callback_;
std::vector<std::unique_ptr<XusbNotificationRequest>> requests_;
std::shared_ptr<boost::thread> thread_;