diff options
Diffstat (limited to 'src/support/file.h')
-rw-r--r-- | src/support/file.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/support/file.h b/src/support/file.h index 3dc766b2d..ae91831c9 100644 --- a/src/support/file.h +++ b/src/support/file.h @@ -50,7 +50,7 @@ std::string read_possible_response_file(const std::string&); class Output { public: - // An empty filename will open stdout instead. + // An empty filename or "-" will open stdout instead. Output(const std::string& filename, Flags::BinaryOption binary); ~Output() = default; template<typename T> std::ostream& operator<<(const T& v) { return out << v; } |