Implement rstl::optional_object_null

This commit is contained in:
2022-09-18 02:16:53 -04:00
parent 6a979e343f
commit feac221b4d
2 changed files with 4 additions and 1 deletions

View File

@@ -107,6 +107,6 @@ rstl::optional_object< CAABox > CScriptPlatform::GetTouchBounds() const {
return GetBoundingBox();
}
} else {
return rstl::optional_object< CAABox >();
return rstl::optional_object_null();
}
}