about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--cpp/011load2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/011load b/cpp/011load
index b53063c5..da8dd3ae 100644
--- a/cpp/011load
+++ b/cpp/011load
@@ -11,13 +11,13 @@ recipe main [
 :(code)
 int add_recipes(string form) {
   istringstream in(form);
-  in >> std::noskipws;
   int result = add_recipe(in);
   while (!in.eof()) add_recipe(in);
   return result;
 }
 
 int add_recipe(istringstream& in) {
+  in >> std::noskipws;
   skip_comments_and_newlines(in);
   string _recipe = next_word(in);
   if (_recipe != "recipe")