revert main and more tests

This commit is contained in:
2026-03-17 19:07:01 +03:00
parent fe01c353e6
commit 449978bda0
2 changed files with 18 additions and 59 deletions

View File

@@ -20,27 +20,6 @@ inline PIByteArray SMBusTypeInfo_genHash(PIString n) {
int main(int argc, char * argv[]) {
PIProtectedVariable<double> pv(3.0);
piCout << pv.get();
{
auto ref = pv.getRef();
piCout << *ref;
*ref = 11.;
piCout << *ref;
}
piCout << pv.get();
{
auto ref = pv.getRef();
piCout << *ref;
*ref = 12.;
piCout << *ref;
auto ref2 = std::move(ref);
piCout << *ref2;
}
piCout << pv.get();
return 0;
PICrypt _crypt;
// auto ba = PIFile::readAll("logo.png");
PIString str = "hello!"_a;