Skip to content

Commit

Permalink
Attempt to workaround old Clang on Travis-CI
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyelewis committed Nov 17, 2017
1 parent ca4625a commit f23fe1b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion source/options/executable/executable_options.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,12 @@ namespace cath {
virtual ~executable_options() noexcept = default;

executable_options(const executable_options &) = default;
executable_options(executable_options &&) noexcept = default;
/// \TODO: Come consistently more recent Clangs than the 3.9.0 used by Travis-CI,
/// make this noexcept
executable_options(executable_options &&) = default;
executable_options & operator=(const executable_options &) = default;
/// \TODO: Come consistently more recent Clangs than the 3.9.0 used by Travis-CI,
/// make this noexcept
executable_options & operator=(executable_options &&) = default;

void parse_options(const int &,
Expand Down

0 comments on commit f23fe1b

Please sign in to comment.