summaryrefslogtreecommitdiff
path: root/libhello/libhello/hello.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-05-04 16:16:41 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-05-04 16:16:41 +0200
commit4429bd6724a4668464e8a7920e3c77860b127678 (patch)
tree58c3acf5bcd852ceec69b26d52d2653d96abf22e /libhello/libhello/hello.cxx
parent37cabea5ada7e241777d96c39c01b7a3eae91cdc (diff)
Regenerate libhello using bdep-new
Diffstat (limited to 'libhello/libhello/hello.cxx')
-rw-r--r--libhello/libhello/hello.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/libhello/libhello/hello.cxx b/libhello/libhello/hello.cxx
index ee5c555..f9e60bd 100644
--- a/libhello/libhello/hello.cxx
+++ b/libhello/libhello/hello.cxx
@@ -1,5 +1,3 @@
-// file: libhello/hello.cxx -*- C++ -*-
-
#include <libhello/hello.hxx>
#include <libprint/print.hxx>
@@ -9,8 +7,8 @@ using namespace std;
namespace hello
{
void
- say_formatted (const string& m)
+ say_hello_formatted (ostream& o, const string& h)
{
- print::to_stdout (m);
+ print::print_hello (o, h);
}
}