Skip to content

Commit 69fd6d0

Browse files
committed
Fix formatting
1 parent 73d0396 commit 69fd6d0

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tools/clang/unittests/HLSLExec/ExecutionTest.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -812,9 +812,10 @@ class ExecutionTest {
812812
// before attempting to create the device.
813813
HMODULE ExplicitlyLoadedWarpDll = NULL;
814814
WEX::Common::String WarpDllPath;
815-
if (SUCCEEDED(WEX::TestExecution::RuntimeParameters::TryGetValue(L"WARP_DLL", WarpDllPath))) {
815+
if (SUCCEEDED(WEX::TestExecution::RuntimeParameters::TryGetValue(
816+
L"WARP_DLL", WarpDllPath))) {
816817
WEX::Logging::Log::Comment(WEX::Common::String().Format(
817-
L"WARP_DLL requested: %ls", (const wchar_t*)WarpDllPath));
818+
L"WARP_DLL requested: %ls", (const wchar_t *)WarpDllPath));
818819
ExplicitlyLoadedWarpDll = LoadLibraryExW(WarpDllPath, NULL, 0);
819820
VERIFY_WIN32_BOOL_SUCCEEDED(!!ExplicitlyLoadedWarpDll);
820821
}
@@ -846,12 +847,11 @@ class ExecutionTest {
846847
if (GetModuleHandleW(L"d3d10warp.dll") != NULL) {
847848
WCHAR szFullModuleFilePath[MAX_PATH] = L"";
848849
GetModuleFileNameW(GetModuleHandleW(L"d3d10warp.dll"),
849-
szFullModuleFilePath, sizeof(szFullModuleFilePath));
850+
szFullModuleFilePath, sizeof(szFullModuleFilePath));
850851
WEX::Logging::Log::Comment(WEX::Common::String().Format(
851852
L"WARP driver loaded from: %ls", szFullModuleFilePath));
852853
}
853854

854-
855855
} else {
856856
CComPtr<IDXGIAdapter1> hardwareAdapter;
857857
WEX::Common::String AdapterValue;

0 commit comments

Comments
 (0)