diff --git a/alib2common/src/container/ObjectsDeque.h b/alib2common/src/container/ObjectsDeque.h index cc06e7b33e57d1408f8c07870d7cfe14df05338b..049e82180544616ecd43e9d5b0b9270b3b40cb8f 100644 --- a/alib2common/src/container/ObjectsDeque.h +++ b/alib2common/src/container/ObjectsDeque.h @@ -59,7 +59,7 @@ public: }; template < class ElementType > -ObjectsDeque < ElementType >::ObjectsDeque ( std::deque < ElementType > data ) : std::deque < ElementType > ( std::move ( data ) ) { +ObjectsDeque < ElementType >::ObjectsDeque ( std::deque < ElementType > raw ) : std::deque < ElementType > ( std::move ( raw ) ) { } template < class ElementType > diff --git a/alib2common/src/container/ObjectsList.h b/alib2common/src/container/ObjectsList.h index 0b30f5879e059d4a00e3cad28884a3b3d6885ff6..6c8510714ba67639b863bc5345457d3356c3d937 100644 --- a/alib2common/src/container/ObjectsList.h +++ b/alib2common/src/container/ObjectsList.h @@ -59,7 +59,7 @@ public: }; template < class ElementType > -ObjectsList < ElementType >::ObjectsList ( std::list < ElementType > data ) : std::list < ElementType > ( std::move ( data ) ) { +ObjectsList < ElementType >::ObjectsList ( std::list < ElementType > raw ) : std::list < ElementType > ( std::move ( raw ) ) { } template < class ElementType > diff --git a/alib2common/src/container/ObjectsMap.h b/alib2common/src/container/ObjectsMap.h index 56815432405188eb21896d100a3578fa5e004c55..aafec1d1399f1a2b15e960712eb777c961ae142b 100644 --- a/alib2common/src/container/ObjectsMap.h +++ b/alib2common/src/container/ObjectsMap.h @@ -61,7 +61,7 @@ public: }; template < class KeyType, class ValueType > -ObjectsMap<KeyType, ValueType>::ObjectsMap ( std::map < KeyType, ValueType > data ) : std::map < KeyType, ValueType > ( std::move ( data ) ) { +ObjectsMap<KeyType, ValueType>::ObjectsMap ( std::map < KeyType, ValueType > raw ) : std::map < KeyType, ValueType > ( std::move ( raw ) ) { } diff --git a/alib2common/src/container/ObjectsPair.h b/alib2common/src/container/ObjectsPair.h index 13abfc482a8c4859aa431eb7ce078a11e640bd34..d0f8503793b62bcb89f1cecd8efefbd7202de881 100644 --- a/alib2common/src/container/ObjectsPair.h +++ b/alib2common/src/container/ObjectsPair.h @@ -59,7 +59,7 @@ public: }; template < class KeyType, class ValueType > -ObjectsPair < KeyType, ValueType >::ObjectsPair(std::pair<KeyType, ValueType> data) : std::pair<KeyType, ValueType>(std::move(data)) { +ObjectsPair < KeyType, ValueType >::ObjectsPair(std::pair<KeyType, ValueType> raw) : std::pair<KeyType, ValueType>(std::move(raw)) { } diff --git a/alib2common/src/container/ObjectsSet.h b/alib2common/src/container/ObjectsSet.h index 1de6c6df6148e8d05c15cb42fbdb3ce84bcd0c40..1195aca583c7bac2b539aa15ce3fd182a132b6de 100644 --- a/alib2common/src/container/ObjectsSet.h +++ b/alib2common/src/container/ObjectsSet.h @@ -59,7 +59,7 @@ public: }; template < class ElementType > -ObjectsSet < ElementType >::ObjectsSet(std::set<ElementType> data) : std::set<ElementType>(std::move(data)) { +ObjectsSet < ElementType >::ObjectsSet(std::set<ElementType> raw) : std::set<ElementType>(std::move(raw)) { } diff --git a/alib2common/src/container/ObjectsTree.h b/alib2common/src/container/ObjectsTree.h index 4dc894a0e257880675a4bb989ac41dcdcf37441d..d4856161b67b93a112052da098da7feebf95eff2 100644 --- a/alib2common/src/container/ObjectsTree.h +++ b/alib2common/src/container/ObjectsTree.h @@ -58,7 +58,7 @@ public: }; template < class ElementType > -ObjectsTree < ElementType >::ObjectsTree ( std::tree < ElementType > data ) : std::tree < ElementType > ( std::move ( data ) ) { +ObjectsTree < ElementType >::ObjectsTree ( std::tree < ElementType > raw ) : std::tree < ElementType > ( std::move ( raw ) ) { } template < class ElementType > diff --git a/alib2common/src/container/ObjectsVector.h b/alib2common/src/container/ObjectsVector.h index c1f00206be4331d1341ee49eabcc19ea72abf656..d191758a1fdc8e722b6e9c041e2e296aabd73d42 100644 --- a/alib2common/src/container/ObjectsVector.h +++ b/alib2common/src/container/ObjectsVector.h @@ -59,7 +59,7 @@ public: }; template < class ElementType > -ObjectsVector < ElementType >::ObjectsVector ( std::vector < ElementType > data ) : std::vector < ElementType > ( std::move ( data ) ) { +ObjectsVector < ElementType >::ObjectsVector ( std::vector < ElementType > raw ) : std::vector < ElementType > ( std::move ( raw ) ) { } template < class ElementType >