Kaydet (Commit) cfaba15c authored tarafından Michael Stahl's avatar Michael Stahl

cli_ure: fix another bad _WIN64 check (related tdf#94265)

Same problem as commit 2aa20cfb

Change-Id: I02160c53870a021c742babf358e0d6172557ef21
üst 42eb843b
......@@ -91,10 +91,10 @@ inline void to_uno(
reinterpret_cast< void ** >( &ret ),
reinterpret_cast< void * >(
::System::Runtime::InteropServices::GCHandle::op_Explicit( handle )
#if defined _WIN32
.ToInt32()
#elif defined _WIN64
#if defined _WIN64
.ToInt64()
#elif defined _WIN32
.ToInt32()
#else
#error ERROR: either _WIN64 or _WIN32 must be defined
ERROR: either _WIN64 or _WIN32 must be defined
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment