Skip to content

Commit

Permalink
Include default copy constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
wdconinc committed Sep 22, 2022
1 parent 405ad45 commit 120ec37
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions include/eXevent.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ class eXEvent
public:

eXEvent();
eXEvent(const eXEvent&) = default;
eXEvent(starlightConstants::event &ev);
~eXEvent();

Expand Down
1 change: 1 addition & 0 deletions include/vector3.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ class vector3
{
public:
vector3();
vector3(const vector3&) = default;
vector3(double *vec);
vector3(double x, double y, double z);
virtual ~vector3();
Expand Down

0 comments on commit 120ec37

Please sign in to comment.