summaryrefslogtreecommitdiff
path: root/rld-cc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'rld-cc.cpp')
-rw-r--r--rld-cc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/rld-cc.cpp b/rld-cc.cpp
index ed48d1c..38d3093 100644
--- a/rld-cc.cpp
+++ b/rld-cc.cpp
@@ -99,7 +99,7 @@ namespace rld
while (true)
{
std::string line;
- out.getline (line);
+ out.read_line (line);
if (line.size () == 0)
break;
if (match_and_trim ("install: ", line, install_path))
@@ -143,7 +143,7 @@ namespace rld
if (rld::verbose () >= RLD_VERBOSE_DETAILS)
out.output ("cc", std::cout, true);
out.open ();
- out.get (path);
+ out.read (path);
out.close ();
if (rld::verbose () >= RLD_VERBOSE_DETAILS)
std::cout << "cc::libpath: " << name << " -> " << path << std::endl;