Skip to content

Commit

Permalink
Remove noexcept from some more defaulted methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhsamuel committed Jan 4, 2017
1 parent c56ae04 commit 17449e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cxx/fixfmt/bool.hh
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ public:

Bool() = default;
Bool(Bool const&) = default;
Bool(Bool&&) noexcept = default;
Bool(Bool&&) = default;
Bool& operator=(Bool const&) = default;
Bool& operator=(Bool&&) noexcept = default;
Bool& operator=(Bool&&) = default;
~Bool() noexcept = default;

Bool(Args const& args)
Expand Down
4 changes: 2 additions & 2 deletions cxx/fixfmt/string.hh
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ public:

String() = default;
String(String const&) = default;
String(String&&) noexcept = default;
String(String&&) = default;
String& operator=(String const&) = default;
String& operator=(String&&) noexcept = default;
String& operator=(String&&) = default;
~String() noexcept = default;

String(Args const& args) : args_(args) { check(args_); }
Expand Down

0 comments on commit 17449e4

Please sign in to comment.