We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35e05aa commit a5f224fCopy full SHA for a5f224f
1 file changed
labeless_ida/types.cpp
@@ -95,12 +95,12 @@ ScopedWaitBox::~ScopedWaitBox()
95
hide_wait_box();
96
}
97
98
-#if (IDA_SDK_VERSION >= 930)
+#if (IDA_SDK_VERSION >= 930) && !defined(__HAS_INT128__)
99
// fix of broken 9.3 sdk
100
uint128 operator<<(const uint128& x, int cnt)
101
{
102
uint64 l = x.l << cnt;
103
uint64 h = (x.h << cnt) | (x.l >> (64 - cnt));
104
return uint128(l, h);
105
106
-#endif // (IDA_SDK_VERSION >= 930)
+#endif // (IDA_SDK_VERSION >= 930) && !defined(__HAS_INT128__)
0 commit comments