diff options
Diffstat (limited to 'bdep/status.cxx')
-rw-r--r-- | bdep/status.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bdep/status.cxx b/bdep/status.cxx index b460cd1..5ddf681 100644 --- a/bdep/status.cxx +++ b/bdep/status.cxx @@ -4,6 +4,8 @@ #include <bdep/status.hxx> +#include <iostream> // cout + #include <bdep/project.hxx> #include <bdep/database.hxx> #include <bdep/diagnostics.hxx> @@ -129,8 +131,8 @@ namespace bdep // if (verb && cfgs.size () > 1) { - text << (first ? "" : "\n") - << "in configuration " << *c << ':'; + cout << (first ? "" : "\n") + << "in configuration " << *c << ':' << endl; first = false; } |