Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions code/object/waypoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,6 @@ waypoint::waypoint(const vec3d *position)
this->m_objnum = -1;
}

waypoint::~waypoint()
{
// nothing to do
}

const vec3d *waypoint::get_pos() const
{
if (m_objnum >= 0)
Expand Down Expand Up @@ -118,11 +113,6 @@ waypoint_list::waypoint_list(const char *name)
this->m_color_r = this->m_color_g = this->m_color_b = 255;
}

waypoint_list::~waypoint_list()
{
// nothing to do
}

const char *waypoint_list::get_name() const
{
return m_name;
Expand Down
2 changes: 0 additions & 2 deletions code/object/waypoint.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ class waypoint
public:
waypoint();
waypoint(const vec3d *pos);
~waypoint();

// accessors
const vec3d *get_pos() const;
Expand All @@ -37,7 +36,6 @@ class waypoint_list
public:
waypoint_list();
waypoint_list(const char *name);
~waypoint_list();

// accessors
const char *get_name() const;
Expand Down
Loading