diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-06-17 11:10:51 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-06-17 11:10:51 +0200 |
commit | d45dbc807adc05bc03437116659c6abd4f5174c8 (patch) | |
tree | a7fca97c8bdc6d745b09e99b500f2099d7e5f818 /build/cxx/rule.cxx | |
parent | b53318dcc9f2c34db0689225ec0bc2c70c28daf7 (diff) |
Use portable ifdstream from libbutl instead of GNU stdio_filebuf
Diffstat (limited to 'build/cxx/rule.cxx')
-rw-r--r-- | build/cxx/rule.cxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/build/cxx/rule.cxx b/build/cxx/rule.cxx index 9248777..f63c92a 100644 --- a/build/cxx/rule.cxx +++ b/build/cxx/rule.cxx @@ -9,9 +9,8 @@ #include <cstddef> // size_t #include <cstdlib> // exit #include <utility> // move() -#include <istream> -#include <ext/stdio_filebuf.h> +#include <butl/fdstream> #include <build/scope> #include <build/variable> @@ -26,6 +25,7 @@ #include <build/cxx/target> using namespace std; +using namespace butl; namespace build { @@ -279,9 +279,7 @@ namespace build try { process pr (args.data (), false, false, true); - - __gnu_cxx::stdio_filebuf<char> fb (pr.in_ofd, ios_base::in); - istream is (&fb); + ifdstream is (pr.in_ofd); for (bool first (true); !is.eof (); ) { |