mirror of
https://github.com/AxioDL/amuse.git
synced 2025-12-11 06:27:41 +00:00
General: Use emplace_back where applicable
Same thing, less reading.
This commit is contained in:
@@ -933,7 +933,7 @@ AudioGroupSampleDirectory::toGCNData(const AudioGroupDatabase& group) const {
|
||||
entryDNA.m_sampleOff = sampleOffset;
|
||||
sampleOffset += ROUND_UP_32(dataLen);
|
||||
entryDNA.binarySize(adpcmOffset);
|
||||
entries.push_back(std::make_pair(entryDNA, adpcmParms));
|
||||
entries.emplace_back(entryDNA, adpcmParms);
|
||||
}
|
||||
}
|
||||
adpcmOffset += 4;
|
||||
|
||||
Reference in New Issue
Block a user