Skip to content
Snippets Groups Projects
Commit 077c1cba authored by Jan Trávníček's avatar Jan Trávníček
Browse files

tiny improvement

parent 8207fa75
No related branches found
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ class ValueOperationAbstractionImpl : virtual public ValueInterface < ReturnType
mutable std::optional < ReturnType > m_data;
 
protected:
void setData ( ReturnType data ) {
void setData ( ReturnType && data ) {
m_data = std::move ( data );
}
 
......@@ -46,7 +46,7 @@ class ValueOperationAbstractionImpl < const ReturnType > : virtual public ValueI
mutable std::optional < ReturnType > m_data;
 
protected:
void setData ( ReturnType data ) {
void setData ( ReturnType && data ) {
m_data = std::move ( data );
}
 
......@@ -93,15 +93,15 @@ public:
 
template < class ReturnType >
class ValueOperationAbstractionImpl < const ReturnType & > : virtual public ValueInterface < ReturnType > {
mutable std::optional < std::reference_wrapper < const ReturnType > > m_data;
mutable std::optional < std::reference_wrapper < ReturnType > > m_data;
 
protected:
void setData ( const ReturnType & data ) {
m_data = std::reference_wrapper < const ReturnType > ( data );
m_data = std::reference_wrapper < ReturnType > ( const_cast < ReturnType & > ( data ) );
}
 
ReturnType && getValue ( ) const override {
return std::move ( const_cast < ReturnType & > ( m_data->get ( ) ) );
return std::move ( m_data->get ( ) );
}
 
public:
......@@ -143,15 +143,15 @@ public:
 
template < class ReturnType >
class ValueOperationAbstractionImpl < const ReturnType && > : virtual public ValueInterface < ReturnType > {
mutable std::optional < std::reference_wrapper < const ReturnType > > m_data;
mutable std::optional < std::reference_wrapper < ReturnType > > m_data;
 
protected:
void setData ( const ReturnType && data ) {
m_data = std::reference_wrapper < const ReturnType > ( data );
m_data = std::reference_wrapper < ReturnType > ( const_cast < ReturnType & > ( data ) );
}
 
ReturnType && getValue ( ) const override {
return std::move ( const_cast < ReturnType & > ( m_data->get ( ) ) );
return std::move ( m_data->get ( ) );
}
 
public:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment