ソースを参照

forgot to change lengths for new arrays

tarfeef101 7 年 前
コミット
943708a41c
2 ファイル変更3 行追加3 行削除
  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