pull/7/head
Jeff Becker 6 years ago
parent 98e992e28f
commit 066cf537e2

@ -69,8 +69,6 @@ namespace llarp
progress();
std::string configfile;
std::ostream &out;
};
} // namespace llarp

@ -12,8 +12,7 @@
namespace llarp
{
Context::Context(bool singleThread)
: singleThreaded(singleThread), out(std::cout)
Context::Context(bool singleThread) : singleThreaded(singleThread)
{
llarp::LogInfo(LLARP_VERSION, " ", LLARP_RELEASE_MOTTO);
}
@ -25,7 +24,7 @@ namespace llarp
void
Context::progress()
{
out << "." << std::flush;
std::cout << "." << std::flush;
}
bool

Loading…
Cancel
Save