diff options
Diffstat (limited to 'test/src/unit')
| -rwxr-xr-x | test/src/unit/APITests.cpp | 16 | ||||
| -rwxr-xr-x | test/src/unit/TkTests.cpp | 1 |
2 files changed, 1 insertions, 16 deletions
diff --git a/test/src/unit/APITests.cpp b/test/src/unit/APITests.cpp index 44f79be..ee00bb2 100755 --- a/test/src/unit/APITests.cpp +++ b/test/src/unit/APITests.cpp @@ -1609,26 +1609,10 @@ TEST_F(APITest,CExportsNoNameMangling) //
#if NV_WIN32
-#if NV_DEBUG
- const char* dllName = "NvBlastDebug_x86.dll";
-#elif NV_CHECKED
- const char* dllName = "NvBlastChecked_x86.dll";
-#elif NV_PROFILE
- const char* dllName = "NvBlastProfile_x86.dll";
-#else
const char* dllName = "NvBlast_x86.dll";
-#endif
#elif NV_WIN64
-#if NV_DEBUG
- const char* dllName = "NvBlastDebug_x64.dll";
-#elif NV_CHECKED
- const char* dllName = "NvBlastChecked_x64.dll";
-#elif NV_PROFILE
- const char* dllName = "NvBlastProfile_x64.dll";
-#else
const char* dllName = "NvBlast_x64.dll";
#endif
-#endif
HMODULE dllHandle = LoadLibrary(TEXT(dllName));
DWORD error = GetLastError();
diff --git a/test/src/unit/TkTests.cpp b/test/src/unit/TkTests.cpp index 5d6d757..5c00ca6 100755 --- a/test/src/unit/TkTests.cpp +++ b/test/src/unit/TkTests.cpp @@ -31,6 +31,7 @@ #include <map>
#include <random>
#include <algorithm>
+#include <functional>
#include "PsMemoryBuffer.h"
|