Skip to content

Commit edd2597

Browse files
authored
[ParticleSystem] Initialize std::pair of std::vectors explicitly (#291)
1 parent 9f89e4b commit edd2597

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/threepp/objects/ParticleSystem.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ void ParticleSystem::Settings::makeDefault() {
458458

459459
texture = nullptr;
460460

461-
size = {};
462-
opacity = {};
463-
color = {};
461+
size = {{}, {}};
462+
opacity = {{}, {}};
463+
color = {{}, {}};
464464
}

0 commit comments

Comments
 (0)