Skip to content

Commit ce6502b

Browse files
Fix compile error with Conduit + Particles (#4813)
## Summary Remove redefinition of default argument for 'template class Allocator' that causes compiler error. ## Checklist The proposed changes: - [x] fix a bug or incorrect behavior in AMReX - [ ] add new capabilities to AMReX - [ ] changes answers in the test suite to more than roundoff level - [ ] are likely to significantly affect the results of downstream AMReX users - [ ] include documentation in the code and/or rst files, if appropriate Co-authored-by: Jordan Musser <[email protected]>
1 parent c6eb03b commit ce6502b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Src/Extern/Conduit/AMReX_Conduit_Blueprint_ParticlesI.H

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ ParticleTileToBlueprint(const ParticleTile<ParticleType,
244244
//---------------------------------------------------------------------------//
245245
// Converts a AMReX Particle Container into a Conduit Mesh Blueprint Hierarchy.
246246
//---------------------------------------------------------------------------//
247-
template <typename ParticleType, int NArrayReal, int NArrayInt, template<class> class Allocator=DefaultAllocator>
247+
template <typename ParticleType, int NArrayReal, int NArrayInt, template<class> class Allocator>
248248
void
249249
ParticleContainerToBlueprint(const ParticleContainer_impl<ParticleType,
250250
NArrayReal,

0 commit comments

Comments
 (0)