Przeglądaj źródła

forgot to change lengths for new arrays

tarfeef101 7 lat temu
rodzic
commit
943708a41c
2 zmienionych plików z 3 dodań i 3 usunięć
  1. 3 3
      test.cc
  2. BIN
      testfile

+ 3 - 3
test.cc

@@ -15,11 +15,11 @@ int main()
 	cout << "success! inserted x" << endl;
 	test->insert(y, 5);
 	cout << "success! inserted y" << endl;
-	test->insert(z, 5);
+	test->insert(z, 1);
 	cout << "success! inserted z" << endl;
-	test->insert(a, 5);
+	test->insert(a, 7);
 	cout << "success! inserted a" << endl;
-	test->insert(b, 5);
+	test->insert(b, 7);
 	cout << "success! inserted b" << endl;
 	test->myPrintIsBetterThanYoursLogan();
 	cout << "Print Done!" << endl;

BIN
testfile