summaryrefslogtreecommitdiffstats
path: root/source/core
diff options
context:
space:
mode:
authorSpencer Fricke <115671160+spencer-lunarg@users.noreply.github.com>2025-05-26 18:36:11 -0400
committerGitHub <noreply@github.com>2025-05-26 22:36:11 +0000
commit55dcd29ed3fb2b59582d578245d612ffb450cb9e (patch)
tree7ececa907c2fd64cfd11b9a3aa398c08d1eabcd4 /source/core
parent5280ca81025d42239fec492eb72d38606308751a (diff)
Fix nullptr_t compiling failure (#7240)
Fixes when building with Clang 14.0
Diffstat (limited to 'source/core')
-rw-r--r--source/core/slang-riff.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/core/slang-riff.h b/source/core/slang-riff.h
index 0f820c747..20b1d7c66 100644
--- a/source/core/slang-riff.h
+++ b/source/core/slang-riff.h
@@ -303,7 +303,7 @@ public:
BoundsCheckedChunkPtr() {}
/// Initialize a null pointer
- BoundsCheckedChunkPtr(nullptr_t) {}
+ BoundsCheckedChunkPtr(std::nullptr_t) {}
/// Initialize a pointer to a chunk, with a size limit.