We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b01d73 commit 44b9dceCopy full SHA for 44b9dce
RadeonRays/src/accelerator/bvh2.h
@@ -115,14 +115,10 @@ namespace RadeonRays
115
#endif // WIN32
116
}
117
118
-#if defined(_MSC_VER)
119
- #if defined(_WIN32)
120
- #if defined(_WIN64)
121
- #define MSVC_X86_ALIGNMENT_FIX
122
- #else
123
- #define MSVC_X86_ALIGNMENT_FIX &
124
- #endif
125
+#if _MSC_VER <= 1900 && defined(_WIN32) && !defined(_WIN64)
+ #define MSVC_X86_ALIGNMENT_FIX &
+#else
+ #define MSVC_X86_ALIGNMENT_FIX
126
#endif
127
128
void BuildImpl(
0 commit comments