Skip to content

Commit

Permalink
fix(window): add default copy cstr (#16)
Browse files Browse the repository at this point in the history
The copy constructor must be declared explicitly since the implicit declaration is deprecated.
Ref polybar/polybar#1729.
  • Loading branch information
Lomadriel authored and patrick96 committed Apr 7, 2019
1 parent ab6247b commit d2ff2aa
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions include/xpp/window.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ class window
{}

public:
window(const window&) = default;
using base::base;
using base::operator=;

Expand Down

0 comments on commit d2ff2aa

Please sign in to comment.