STYLE: protect and comment test of illegal access (#1066)

This commit is contained in:
Mark Olesen
2018-11-08 14:46:35 +01:00
parent d7fc5f6f66
commit 6f3471d5fb

View File

@ -103,8 +103,11 @@ int main(int argc, char *argv[])
ldl[1].reserve(5); // should not decrease allocated size
ldl[1](3) = 2; // allocates space and sets value
// this works without a segfault, but doesn't change the list size
#ifndef FULLDEBUG
// Accessing an out-of-bounds address, but writing into allocated memory.
// No segfault, doesn't change the list size. Nonetheless not a good idea.
ldl[0][4] = 4;
#endif
ldl[1] = 3;