Added filament_ramming_parameters and filament_ramming_buttons into configuration layer

This commit is contained in:
Lukas Matena 2018-03-14 15:48:37 +01:00
parent cf5dfb9673
commit 9f18b639a8
4 changed files with 21 additions and 4 deletions

View file

@ -56,7 +56,7 @@ std::istream& operator>>(std::istream& stream, std::vector<T>& vect) {
we_read_something = true;
}
if (!stream.eof() && we_read_something) { // if this is not eof, we might be at separator - let's get rid of it
stream.clear(); // if we failed on very first line or reached eof, return stream in !good() state
stream.clear(); // if we failed on very first line or reached eof, return stream in good() state
stream.get(); // get() whatever we are stuck at
}
return stream;