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.
2 parents a3439a0 + eb0d212 commit 4dc19b1Copy full SHA for 4dc19b1
openvdb_ax/openvdb_ax/codegen/Types.h
@@ -198,8 +198,8 @@ struct LLVMType<void>
198
}
199
};
200
201
-/// @note void* implemented as signed int_t* to match clang IR generation
202
-template <> struct LLVMType<void*> : public LLVMType<int_t<sizeof(void*)>::type*> {};
+/// @note void* implemented as signed int8_t* to match clang IR generation
+template <> struct LLVMType<void*> : public LLVMType<int8_t*> {};
203
template <> struct LLVMType<openvdb::math::half>
204
{
205
// @note LLVM has a special representation of half types. Don't alias to
pendingchanges/ax32fix.txt
@@ -0,0 +1,3 @@
1
+Build:
2
+ - Fixed a build issue with AX on 32bit platforms.
3
+ [Reported by Mathieu Malaterre]
0 commit comments