Commit 7fc5f17b authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Added missing operator= to the dummy specialization of DualGraphLayer

parent c73ab675
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -167,6 +167,17 @@ template< typename MeshConfig,
class DualGraphLayer< MeshConfig, Device, false >
{
public:
   DualGraphLayer& operator=( const DualGraphLayer& other )
   {
      return *this;
   }

   template< typename Device_ >
   DualGraphLayer& operator=( const DualGraphLayer< MeshConfig, Device_ >& other )
   {
      return *this;
   }

   template< typename Mesh >
   void initializeDualGraph( const Mesh& mesh,
                             int minCommon = 0 )