Skip to content
Snippets Groups Projects
Commit 2bc3fba4 authored by Ian Prins's avatar Ian Prins
Browse files

add virtual destructor to feature for polymorphism

parent 6942b8a1
No related branches found
No related tags found
No related merge requests found
......@@ -12,3 +12,5 @@ char Feature::getSymbol() {
Coord Feature::getLocation() {
return this->location;
}
Feature::~Feature() {}
......@@ -7,6 +7,7 @@ class Feature {
Feature(char, Coord);
char getSymbol();
Coord getLocation();
virtual ~Feature();
private:
Coord location;
char symbol;
......
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