Skip to content

Commit

Permalink
Make init order the same as declaration order.
Browse files Browse the repository at this point in the history
  • Loading branch information
kring committed Aug 29, 2023
1 parent bebd917 commit 07370fa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/CesiumRuntime/Private/CesiumTileExcluderAdapter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ CesiumTileExcluderAdapter::CesiumTileExcluderAdapter(
UCesiumTileExcluder* pExcluder,
ACesium3DTileset* pTileset,
UCesiumTile* pTile)
: Tile(pTile),
Georeference(pTileset->ResolveGeoreference()),
Excluder(pExcluder),
: Excluder(pExcluder),
Tileset(pTileset),
Tile(pTile),
Georeference(pTileset->ResolveGeoreference()),
IsExcluderValid(true){};

0 comments on commit 07370fa

Please sign in to comment.