Commit b7249f24 authored by Joseph Noir's avatar Joseph Noir

Merge branch 'unstable' of github.com:Neverlord/libcppa into topic/opencl

parents f8b7490a cf4655f2
...@@ -207,9 +207,8 @@ class opt1_rvalue_builder<false> { ...@@ -207,9 +207,8 @@ class opt1_rvalue_builder<false> {
sub_type; sub_type;
template<typename SubType> template<typename SubType>
opt1_rvalue_builder(char sopt, std::string lopt, SubType&& sub) opt1_rvalue_builder(std::string lopt, SubType&& sub)
: m_short(sopt), m_long(std::move(lopt)) : m_long(std::move(lopt)), m_sub(std::forward<SubType>(sub)) { }
, m_sub(std::forward<SubType>(sub)) { }
template<typename Expr> template<typename Expr>
auto operator>>(Expr expr) auto operator>>(Expr expr)
...@@ -228,7 +227,6 @@ class opt1_rvalue_builder<false> { ...@@ -228,7 +227,6 @@ class opt1_rvalue_builder<false> {
template<typename T> template<typename T>
inline void inject_arg_name(const T&) { } inline void inject_arg_name(const T&) { }
char m_short;
std::string m_long; std::string m_long;
sub_type m_sub; sub_type m_sub;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment