Advertisement
Guest User

Untitled

a guest
May 30th, 2015
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.72 KB | None | 0 0
  1. Undefined symbols for architecture x86_64:
  2.   "GameObject::~GameObject()", referenced from:
  3.       Number::Number(int) in TheMathGame.cpp.o
  4.       MovingObject::MovingObject(char, int, int, Color, Direction::value, bool, bool) in TheMathGame.cpp.o
  5.       Number::~Number() in Number.cpp.o
  6.   "MovingObject::~MovingObject()", referenced from:
  7.       Player::~Player() in Player.cpp.o
  8.       Bullet::~Bullet() in Bullet.cpp.o
  9.       NumEater::~NumEater() in NumEater.cpp.o
  10.       Flyer::~Flyer() in Flyer.cpp.o
  11.   "World::World()", referenced from:
  12.       World::getSingleton() in World.cpp.o
  13.   "World::~World()", referenced from:
  14.       World::getSingleton() in World.cpp.o
  15.   "typeinfo for GameObject", referenced from:
  16.       Player::collision(GameObject*) in Player.cpp.o
  17.       typeinfo for Number in Number.cpp.o
  18.       Bullet::collision(GameObject*) in Bullet.cpp.o
  19.       Flyer::collision(GameObject*) in Flyer.cpp.o
  20.   "typeinfo for MovingObject", referenced from:
  21.       typeinfo for Player in Player.cpp.o
  22.       typeinfo for Bullet in Bullet.cpp.o
  23.       typeinfo for NumEater in NumEater.cpp.o
  24.       typeinfo for Flyer in Flyer.cpp.o
  25.   "vtable for GameObject", referenced from:
  26.       GameObject::GameObject(int, int, Color, bool) in TheMathGame.cpp.o
  27.   NOTE: a missing vtable usually means the first non-inline virtual member function has no definition.
  28.   "vtable for MovingObject", referenced from:
  29.       MovingObject::MovingObject(char, int, int, Color, Direction::value, bool, bool) in TheMathGame.cpp.o
  30.   NOTE: a missing vtable usually means the first non-inline virtual member function has no definition.
  31. ld: symbol(s) not found for architecture x86_64
  32. clang: error: linker command failed with exit code 1 (use -v to see invocation)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement