Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'framework/correctly_remove_blk_fields' into develop
This merge fixes three lines of code in the mpas_block_creator module that were intended to remove several temporary fields from the 'allFields' pool, but which were not actually working. The 'indexTo{Cell,Edge,Vertex}ID_blk' fields that are added to the allFields pool in mpas_block_creator_finalize_block_phase1( ) were intended to be removed from the pool in mpas_block_creator_finalize_block_phase2( ). However, due to a capitalization issue (pools are case-sensitive), these *_blk fields were not removed even though they are deallocated. This can cause problems for other code that needs to iterate all fields in the allFields pool. * framework/correctly_remove_blk_fields: Correctly remove 'indexTo{Cell,Edge,Vertex}ID_blk' fields from allFields pool
- Loading branch information