Skip to content
Snippets Groups Projects

Linting setup + code updates

Merged Jakub Klinkovský requested to merge JK/lint into develop
2 files
+ 11
0
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -64,6 +64,9 @@ public:
@@ -64,6 +64,9 @@ public:
*/
*/
explicit DistributedArray( const DistributedArray& array );
explicit DistributedArray( const DistributedArray& array );
 
// default move-constructor
 
DistributedArray( DistributedArray&& ) noexcept = default;
 
/**
/**
* \brief Copy constructor with a specific allocator (makes a deep copy).
* \brief Copy constructor with a specific allocator (makes a deep copy).
*
*
@@ -206,6 +209,10 @@ public:
@@ -206,6 +209,10 @@ public:
DistributedArray&
DistributedArray&
operator=( const DistributedArray& array );
operator=( const DistributedArray& array );
 
// Move-assignment operator
 
DistributedArray&
 
operator=( DistributedArray&& ) noexcept = default;
 
template< typename Array, typename..., typename = std::enable_if_t< HasSubscriptOperator< Array >::value > >
template< typename Array, typename..., typename = std::enable_if_t< HasSubscriptOperator< Array >::value > >
DistributedArray&
DistributedArray&
operator=( const Array& array );
operator=( const Array& array );
Loading