Skip to content

Commit

Permalink
remove erroneous ; ref #96
Browse files Browse the repository at this point in the history
  • Loading branch information
artemp committed Mar 10, 2016
1 parent 5aab5df commit 3f025ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions recursive_wrapper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ class recursive_wrapper
* @throws any exception thrown by the default constructur of T.
*/
recursive_wrapper()
: p_(new T){};
: p_(new T){}

~recursive_wrapper() noexcept { delete p_; };
~recursive_wrapper() noexcept { delete p_; }

recursive_wrapper(recursive_wrapper const& operand)
: p_(new T(operand.get())) {}
Expand Down

0 comments on commit 3f025ad

Please sign in to comment.