aboutsummaryrefslogtreecommitdiff
path: root/src/include/fst/expanded-fst.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/fst/expanded-fst.h')
-rw-r--r--src/include/fst/expanded-fst.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/fst/expanded-fst.h b/src/include/fst/expanded-fst.h
index b44b81c..676ceb3 100644
--- a/src/include/fst/expanded-fst.h
+++ b/src/include/fst/expanded-fst.h
@@ -82,7 +82,7 @@ class ExpandedFst : public Fst<A> {
}
return Read(strm, FstReadOptions(filename));
} else {
- return Read(std::cin, FstReadOptions("standard input"));
+ return Read(cin, FstReadOptions("standard input"));
}
}
};
@@ -154,7 +154,7 @@ class ImplToExpandedFst : public ImplToFst<I, F> {
}
return I::Read(strm, FstReadOptions(filename));
} else {
- return I::Read(std::cin, FstReadOptions("standard input"));
+ return I::Read(cin, FstReadOptions("standard input"));
}
}