Unverified Commit 88f89c8f authored by Axel Kohlmeyer's avatar Axel Kohlmeyer
Browse files

correctly read entire vector

parent 62a501eb
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -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);
    }
}