Commit 987208c3 authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Reordered initialization in NeighbourGridEntityLayer constructor to avoid compiler warning

parent 6a3dc32b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -30,8 +30,8 @@ class NeighbourGridEntityLayer
 
      __cuda_callable__
      NeighbourGridEntityLayer( const GridEntity& entity )
      : neighbourEntities( entity ),
        BaseType( entity )
      : BaseType( entity ),
        neighbourEntities( entity )
      {}
 
      __cuda_callable__