diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-08-02 13:51:59 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-08-02 13:51:59 +0200 |
commit | adc5b6e9bbd6de2977f2b0686b95c6344cc39141 (patch) | |
tree | c8f0bb62d1165c0f8b9935d55f072b4d23a6c969 | |
parent | 3634d3ca7c659867beaf7c2e4eaceddd062ea4dd (diff) |
Cosmetic change
-rw-r--r-- | build2/cxx/compile.cxx | 6 | ||||
-rw-r--r-- | build2/cxx/link.cxx | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/build2/cxx/compile.cxx b/build2/cxx/compile.cxx index c2a6be8..2f1eb8d 100644 --- a/build2/cxx/compile.cxx +++ b/build2/cxx/compile.cxx @@ -1211,8 +1211,8 @@ namespace build2 // In case of VC++, we are parsing stderr and if things go // south, we need to copy the diagnostics for the user to see. // - // Note that the eos check is important: if the stream is at - // eos, this and all subsequent writes to cerr will fail (and + // Note that the eof check is important: if the stream is at + // eof, this and all subsequent writes to cerr will fail (and // you won't see a thing). // if (is.peek () != ifdstream::traits_type::eof () && @@ -1439,7 +1439,7 @@ namespace build2 msvc_filter_cl (is, rels); // If anything remains in the stream, send it all to stderr. Note - // that the eos check is important: if the stream is at eos, this + // that the eof check is important: if the stream is at eof, this // and all subsequent writes to cerr will fail (and you won't see // a thing). // diff --git a/build2/cxx/link.cxx b/build2/cxx/link.cxx index 1624f5d..4ac5c43 100644 --- a/build2/cxx/link.cxx +++ b/build2/cxx/link.cxx @@ -1714,7 +1714,7 @@ namespace build2 msvc_filter_link (is, t, lt); // If anything remains in the stream, send it all to stderr. Note - // that the eos check is important: if the stream is at eos, this + // that the eof check is important: if the stream is at eof, this // and all subsequent writes to cerr will fail (and you won't see // a thing). // |