correctly read entire vector

This commit is contained in:
Axel Kohlmeyer 2020-08-09 01:27:56 -04:00
parent 62a501ebda
commit 88f89c8f14
No known key found for this signature in database
GPG Key ID: D9B44E93BF0C375A
1 changed files with 0 additions and 2 deletions

View File

@ -317,8 +317,6 @@ void TestConfigReader::global_vector(const yaml_event_t &event)
data >> num;
for (std::size_t i = 0; i < num; ++i) {
data >> value;
if (data.eof()) break;
config.global_vector.push_back(value);
}
}