Skip to content

Commit

Permalink
Remove redundant constexpr from defaulted constructor.
Browse files Browse the repository at this point in the history
  • Loading branch information
devbww committed Apr 5, 2016
1 parent c1d2fcf commit 94299ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/civil_time_detail.h
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ class civil_time {
: civil_time(impl::n_sec(y, m, d, hh, mm, ss)) {}

CONSTEXPR_M civil_time() noexcept : civil_time(1970) {}
CONSTEXPR_M civil_time(const civil_time&) = default;
civil_time(const civil_time&) = default;
civil_time& operator=(const civil_time&) = default;

// Conversion between civil times of different alignment. Conversion to
Expand Down

0 comments on commit 94299ab

Please sign in to comment.