Skip to content

Commit 0eeb661

Browse files
cbalint13tqchen
authored andcommitted
[FFI][LLVM] Fix compilation errors with clang20 (apache#17954)
1 parent 18bf260 commit 0eeb661

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/tvm/ffi/string.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ class Bytes : public ObjectRef {
210210
*/
211211
class String : public ObjectRef {
212212
public:
213-
String(nullptr_t) = delete; // NOLINT(*)
213+
String(std::nullptr_t) = delete; // NOLINT(*)
214214

215215
/*!
216216
* \brief constructor from char [N]

0 commit comments

Comments
 (0)