Skip to content
Snippets Groups Projects
Commit 2275e174 authored by Thomas Witkowski's avatar Thomas Witkowski
Browse files

Added one test exit.

parent 5fe989bd
No related branches found
No related tags found
No related merge requests found
......@@ -166,7 +166,7 @@ namespace AMDiS {
/// Access to the i-th vector element.
inline T& operator[](int i)
{
TEST_EXIT_DBG(i < size && i >= 0)("invalid index\n");
TEST_EXIT_DBG(i < size && i >= 0)("Invalid index %d!\n", i);
return valArray[i];
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment