diff options
| author | Yong He <yonghe@outlook.com> | 2025-07-28 11:16:21 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-28 18:16:21 +0000 |
| commit | 4ca545ed9e98fa49740b3537473e02b950c23a99 (patch) | |
| tree | 74b86b4f6129a8b04cd585d182542838be14c190 /source/slang/slang-profile.cpp | |
| parent | 6d399804a353154259cf4410940f144db8f9b5cf (diff) | |
Update slang-rhi to fix CI error on debug. (#7946)
* Update slang-rhi
* Fix profile lookup on `nullptr`.
* update rhi
Diffstat (limited to 'source/slang/slang-profile.cpp')
| -rw-r--r-- | source/slang/slang-profile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/slang/slang-profile.cpp b/source/slang/slang-profile.cpp index f7f6b7bdd..620c2f5bc 100644 --- a/source/slang/slang-profile.cpp +++ b/source/slang/slang-profile.cpp @@ -19,7 +19,7 @@ Profile Profile::lookUp(UnownedStringSlice const& name) Profile Profile::lookUp(char const* name) { - return lookUp(UnownedTerminatedStringSlice(name)); + return lookUp(UnownedStringSlice(name)); } CapabilitySet Profile::getCapabilityName() |
