Skip to content

Commit 2a03334

Browse files
committed
minor update
1 parent 8cc54b0 commit 2a03334

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/loader/layers/sanitizer/asan/asan_interceptor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -867,7 +867,7 @@ AsanInterceptor::findAllocInfoByAddress(uptr Address) {
867867
std::shared_lock<ur_shared_mutex> Guard(m_AllocationMapMutex);
868868
auto It = m_AllocationMap.upper_bound(Address);
869869
if (It == m_AllocationMap.begin()) {
870-
return std::optional<AllocationIterator>{};
870+
return std::nullopt;
871871
}
872872
--It;
873873

0 commit comments

Comments
 (0)