Advance app runtime ownership and modernization docs

This commit is contained in:
2026-06-16 06:35:59 +02:00
parent c3d757f4a4
commit a76560e3df
24 changed files with 6675 additions and 9009 deletions

7
test.cpp Normal file
View File

@@ -0,0 +1,7 @@
#include <memory>
struct A{};
int main(){
std::shared_ptr<A> p;
A* a = nullptr;
p = a;
}