Commit 920b3447 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Cosmetic changes

parent b50d0191
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -16,6 +16,8 @@

#pragma once

#include <TNL/Assert.h>

namespace TNL {
namespace Meshes {

@@ -24,7 +26,6 @@ template< typename IDType,
class MeshEntityId
{
public:

   MeshEntityId()
      : id( -1 )
   {}
+5 −4
Original line number Diff line number Diff line
@@ -25,10 +25,11 @@ template< typename MeshConfig,
          typename EntityTopology>
class MeshEntityOrientation
{
   template< typename, typename> friend class MeshEntityReferenceOrientation;
   template< typename, typename>
   friend class MeshEntityReferenceOrientation;

   public:
      typedef typename MeshTraits< MeshConfig >::IdPermutationArrayAccessorType IdPermutationArrayAccessorType;
      using IdPermutationArrayAccessorType = typename MeshTraits< MeshConfig >::IdPermutationArrayAccessorType;

      IdPermutationArrayAccessorType getSubvertexPermutation() const
      {
@@ -39,8 +40,8 @@ class MeshEntityOrientation
      }

   private:
      typedef typename MeshTraits< MeshConfig >::LocalIndexType        LocalIndexType;
      typedef typename MeshTraits< MeshConfig >::template SubentityTraits< EntityTopology, 0 >::IdPermutationArrayType IdPermutationArrayType;
      using LocalIndexType = typename MeshTraits< MeshConfig >::LocalIndexType;
      using IdPermutationArrayType = typename MeshTraits< MeshConfig >::template SubentityTraits< EntityTopology, 0 >::IdPermutationArrayType;

      void setPermutationValue( LocalIndexType index, LocalIndexType value )
      {
+2 −1
Original line number Diff line number Diff line
@@ -25,7 +25,8 @@
namespace TNL {
namespace Meshes {

template< typename MeshConfig, typename EntityTopology > class MeshEntityOrientation;
template< typename MeshConfig, typename EntityTopology >
class MeshEntityOrientation;

template< typename MeshConfig,
          typename EntityTopology,