y3c-stl 0.3.3
Friendly C++ STL wrapper with automatic stacktrace
Loading...
Searching...
No Matches
ptr-local.cc

‍example output:

42
y3c-stl terminated: undefined behavior detected (ub_access_deleted)
at y3c::wrap<int*>::operator*(): attempted to access the deleted value.
Stack trace (most recent call first):
#0 0x00005631a4695728 in main at /home/runner/work/y3c-stl/y3c-stl/build/../examples/ptr-local.cc:11:18
9: std::cout << *p << std::endl;
10: }
11: std::cout << *p << std::endl;
12: }
値型wrap: base_type型のデータと、このデータの生存状態を管理するクラス
Definition wrap.h:26
Definition array.h:8
#include <y3c/wrap>
#include <iostream>
int main() {
{
p = &a;
std::cout << *p << std::endl;
}
std::cout << *p << std::endl;
}
ポインタ型wrap: element_type型のデータへのポインタと、 このポインタ自体の生存状態を管理するクラス
Definition wrap.h:318