remove picout

This commit is contained in:
2026-03-17 18:34:48 +03:00
parent ac877f1024
commit 9f57f0107e
2 changed files with 8 additions and 18 deletions

View File

@@ -23,9 +23,9 @@ int main(int argc, char * argv[]) {
PIProtectedVariable<double> pv(3.0);
piCout << pv.get();
{
auto ref = pv.getRef();
auto ref = pv.getRef();
piCout << *ref;
*ref = 11.;
*ref = 11.;
piCout << *ref;
}
piCout << pv.get();