From 271ec643ed986f1d3e5c7c6915b90488c6912d20 Mon Sep 17 00:00:00 2001 From: Thomas la Cour Date: Fri, 26 Jul 2024 11:30:48 +0200 Subject: [PATCH] removed some comments --- tests/core/sys/windows/test_ole32.odin | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/core/sys/windows/test_ole32.odin b/tests/core/sys/windows/test_ole32.odin index eb01c4489..30bf5bc80 100644 --- a/tests/core/sys/windows/test_ole32.odin +++ b/tests/core/sys/windows/test_ole32.odin @@ -60,8 +60,3 @@ verify_coinit :: proc(t: ^testing.T) { expect_value(t, win32.COINIT.DISABLE_OLE1DDE, 0x00000004) expect_value(t, win32.COINIT.SPEED_OVER_MEMORY, 0x00000008) } - -// hr := CoInitializeEx(nil, .MULTITHREADED); -// testing.expectf(t, hr == 0, "%x (should be: %v)", u32(hr), 0) -// assert(SUCCEEDED(hr)) -// defer CoUninitialize()