diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-06 10:14:29 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-06 10:14:29 -0700 |
commit | e26495c53d043d60d6cadf2b638818d53f3c9a74 (patch) | |
tree | 1a9ada3786d08deb1ff02df0625ab40d64cc17e5 /cpp/011load | |
parent | c17d559155b3f666a729d6380d9b8236f67bc481 (diff) | |
download | mu-e26495c53d043d60d6cadf2b638818d53f3c9a74.tar.gz |
1020
Diffstat (limited to 'cpp/011load')
-rw-r--r-- | cpp/011load | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/011load b/cpp/011load index 27ccb17d..6479b667 100644 --- a/cpp/011load +++ b/cpp/011load @@ -11,6 +11,7 @@ recipe main [ :(code) vector<recipe_number> add_recipes(string form) { istringstream in(form); + in >> std::noskipws; vector<recipe_number> result; while (!in.eof()) result.push_back(add_recipe(in)); @@ -18,7 +19,6 @@ vector<recipe_number> add_recipes(string form) { } recipe_number add_recipe(istream& in) { - in >> std::noskipws; skip_comments_and_newlines(in); string _recipe = next_word(in); //? cout << _recipe; //? 1 |