Skip to content
Snippets Groups Projects
Commit 7fc5f17b authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Added missing operator= to the dummy specialization of DualGraphLayer

parent c73ab675
No related branches found
No related tags found
No related merge requests found
...@@ -167,6 +167,17 @@ template< typename MeshConfig, ...@@ -167,6 +167,17 @@ template< typename MeshConfig,
class DualGraphLayer< MeshConfig, Device, false > class DualGraphLayer< MeshConfig, Device, false >
{ {
public: public:
DualGraphLayer& operator=( const DualGraphLayer& other )
{
return *this;
}
template< typename Device_ >
DualGraphLayer& operator=( const DualGraphLayer< MeshConfig, Device_ >& other )
{
return *this;
}
template< typename Mesh > template< typename Mesh >
void initializeDualGraph( const Mesh& mesh, void initializeDualGraph( const Mesh& mesh,
int minCommon = 0 ) int minCommon = 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