diff options
| author | Spencer Fricke <115671160+spencer-lunarg@users.noreply.github.com> | 2025-05-26 18:36:11 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-26 22:36:11 +0000 |
| commit | 55dcd29ed3fb2b59582d578245d612ffb450cb9e (patch) | |
| tree | 7ececa907c2fd64cfd11b9a3aa398c08d1eabcd4 /source/core | |
| parent | 5280ca81025d42239fec492eb72d38606308751a (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.h | 2 |
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. |
