clarfiying comment

This commit is contained in:
Robin Müller 2020-06-03 23:29:00 +02:00
parent 0a512abc33
commit 5eb3d77bdb

View File

@ -5,11 +5,11 @@
#include <iostream> #include <iostream>
#include <cstdio> #include <cstdio>
// Unfortunately, there must be a forward declaration of the log front end /* Unfortunately, there must be a forward declaration of the log front end
// (MUST be defined in main), to let the system know where to write to. * (MUST be defined in main), to let the system know where to write to.
// The ServiceInterfaceStream instances (declared below and instantiated in main) * The ServiceInterfaceStream instances, which are declared below and
// can be passed to these front ends by passing their underlying buffers * can instantaited somewhere else can be passed to these front ends by passing
// with .rdbuf() * their underlying buffers with .rdbuf() */
namespace sif { namespace sif {
extern std::ostream debug; extern std::ostream debug;
extern std::ostream info; extern std::ostream info;