Skip to content

Commit

Permalink
fixup [GL] Remove unused default constructor.
Browse files Browse the repository at this point in the history
  • Loading branch information
TomFischer committed Apr 21, 2016
1 parent fc86b13 commit 00b42fe
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
6 changes: 0 additions & 6 deletions GeoLib/LineSegment.cpp
Expand Up @@ -38,12 +38,6 @@ LineSegment::LineSegment(LineSegment&& line_segment)
line_segment._point_mem_management_by_line_segment = false;
}

LineSegment::LineSegment()
: _a(nullptr),
_b(nullptr),
_point_mem_management_by_line_segment(false)
{}

LineSegment::~LineSegment()
{
if (_point_mem_management_by_line_segment) {
Expand Down
2 changes: 0 additions & 2 deletions GeoLib/LineSegment.h
Expand Up @@ -23,8 +23,6 @@ class LineSegment final
LineSegment(LineSegment&& line_segment);
LineSegment(LineSegment const& line_segment);

LineSegment();

~LineSegment();

LineSegment& operator= (LineSegment const& rhs) = delete;
Expand Down

0 comments on commit 00b42fe

Please sign in to comment.