質問編集履歴
1
文章を修正しました。
title
CHANGED
File without changes
|
body
CHANGED
@@ -36,4 +36,17 @@
|
|
36
36
|
Main.o: source/Main.cpp
|
37
37
|
$(CC) -c $^
|
38
38
|
|
39
|
+
```
|
40
|
+
|
41
|
+
|
42
|
+
```Error
|
43
|
+
$ make
|
44
|
+
g++ Main.o Scene.o Edit.o -lncurses -o AAEditor
|
45
|
+
/usr/bin/ld: Edit.o: in function `Edit::Edit()':
|
46
|
+
Edit.cpp:(.text+0x64): undefined reference to `Scene::~Scene()'
|
47
|
+
/usr/bin/ld: Edit.o: in function `Edit::~Edit()':
|
48
|
+
Edit.cpp:(.text+0xe8): undefined reference to `Scene::~Scene()'
|
49
|
+
collect2: error: ld returned 1 exit status
|
50
|
+
make: *** [makefile:8: AAEditor] エラー 1
|
51
|
+
|
39
52
|
```
|