Skip to content
Snippets Groups Projects
Commit 9b6793dd authored by Jan Travnicek's avatar Jan Travnicek Committed by Jan Trávníček
Browse files

fix some clang-tidy complaints

parent 8b20d49f
No related branches found
No related tags found
1 merge request!102Merge jt
......@@ -29,8 +29,8 @@ class PackingAbstraction : public OperationAbstraction {
 
public:
PackingAbstraction ( ext::vector < std::shared_ptr < abstraction::OperationAbstraction > > abstractions, size_t resultId ) : m_resultId ( resultId ) {
for ( const std::shared_ptr < abstraction::OperationAbstraction > & abstraction : abstractions )
m_abstractions.push_back ( std::make_shared < abstraction::LazyValue > ( abstraction ) );
for ( std::shared_ptr < abstraction::OperationAbstraction > & abstraction : abstractions )
m_abstractions.push_back ( std::make_shared < abstraction::LazyValue > ( std::move ( abstraction ) ) );
}
 
void setInnerConnection ( size_t sourceId, size_t targetId, size_t paramPosition, bool move ) {
......
......@@ -10,7 +10,7 @@
 
namespace abstraction {
 
Value::Value ( std::shared_ptr < abstraction::OperationAbstraction > ref ) : m_lifeReference ( ref ) {
Value::Value ( std::shared_ptr < abstraction::OperationAbstraction > ref ) : m_lifeReference ( std::move ( ref ) ) {
}
 
std::shared_ptr < abstraction::Value > Value::getProxyAbstraction ( ) {
......
......@@ -116,7 +116,7 @@ class ValueHolder : public ValueHolderImpl < Type > {
using ValueHolderImpl < Type >::ValueHolderImpl;
 
public:
ValueHolder ( std::shared_ptr < abstraction::OperationAbstraction > ref, Type && value ) : ValueHolderImpl < Type > ( ref, std::is_const_v < std::remove_reference_t < Type > >, std::is_rvalue_reference_v < Type >, std::is_lvalue_reference_v < Type >, true ) {
ValueHolder ( std::shared_ptr < abstraction::OperationAbstraction > ref, Type && value ) : ValueHolderImpl < Type > ( std::move ( ref ), std::is_const_v < std::remove_reference_t < Type > >, std::is_rvalue_reference_v < Type >, std::is_lvalue_reference_v < Type >, true ) {
this->setData ( std::forward < Type > ( value ) );
}
 
......
......@@ -20,7 +20,7 @@ class ValueHolderInterface : public Value {
bool m_isAutoMove;
 
public:
ValueHolderInterface ( std::shared_ptr < abstraction::OperationAbstraction > ref, bool isConst, bool isRvalueRef, bool isLvalueRef, bool isAutoMove ) : Value ( ref ), m_isConst ( isConst ), m_isRvalueRef ( isRvalueRef ), m_isLvalueRef ( isLvalueRef ), m_isAutoMove ( isAutoMove ) {
ValueHolderInterface ( std::shared_ptr < abstraction::OperationAbstraction > ref, bool isConst, bool isRvalueRef, bool isLvalueRef, bool isAutoMove ) : Value ( std::move ( ref ) ), m_isConst ( isConst ), m_isRvalueRef ( isRvalueRef ), m_isLvalueRef ( isLvalueRef ), m_isAutoMove ( isAutoMove ) {
}
 
virtual Type && getValue ( ) const = 0;
......
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