Skip to content
Snippets Groups Projects

AST-1637 Support model data in BdaBuffer

Merged Maik Nijhuis requested to merge ast-1637-bda-model-data into master
1 file
+ 1
2
Compare changes
  • Side-by-side
  • Inline
+ 1
2
@@ -58,8 +58,7 @@ BdaBuffer::BdaBuffer(const BdaBuffer& other, const Fields& fields)
// The assertions below check that aocommon::UVector still has this behavior.
if (fields.data) {
data_ = other.data_; // Copy all data buffers.
// Add main data buffer if absent.
data_[""];
data_[""]; // Add main data buffer if absent.
// Resize all data buffers.
for (auto it = data_.begin(); it != data_.end(); ++it) {
it->second.resize(original_capacity_);
Loading