Fixes #255 ("Typos in Boost 1.87 documentation")

This commit is contained in:
Ion Gaztañaga
2025-04-14 23:14:24 +02:00
parent 3a0247acdb
commit 499225d12e
7 changed files with 13 additions and 6 deletions

View File

@@ -69,7 +69,7 @@ int main(int argc, char *argv[])
}
else{ //Child process
//Open the managed segment
managed_shared_memory segment(open_only, argv[2]);
managed_shared_memory segment(open_only, test::get_argv_2(argv));
//Find the vector using the c-string name
MyVector *myvector = segment.find<MyVector>("MyVector").first;