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/module.cxx | |
parent | b53318dcc9f2c34db0689225ec0bc2c70c28daf7 (diff) |
Use portable ifdstream from libbutl instead of GNU stdio_filebuf
Diffstat (limited to 'build/cxx/module.cxx')
-rw-r--r-- | build/cxx/module.cxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/build/cxx/module.cxx b/build/cxx/module.cxx index a511757..6efc1ed 100644 --- a/build/cxx/module.cxx +++ b/build/cxx/module.cxx @@ -4,8 +4,7 @@ #include <build/cxx/module> -#include <istream> -#include <ext/stdio_filebuf.h> +#include <butl/fdstream> #include <build/path> #include <build/scope> @@ -17,6 +16,7 @@ #include <build/config/utility> using namespace std; +using namespace butl; namespace build { @@ -68,9 +68,7 @@ namespace build try { process pr (args, false, false, true); - - __gnu_cxx::stdio_filebuf<char> fb (pr.in_ofd, ios_base::in); - istream is (&fb); + ifdstream is (pr.in_ofd); bool r (getline (is, ver)); |