remove global namespacing from internal base headers

Making the Genode namespace global can cause name collisions on
base-linux.

Fix #2158
This commit is contained in:
Emery Hemingway
2016-11-01 19:13:17 +01:00
committed by Christian Helmuth
parent 6dd695f788
commit eff90d759f
2 changed files with 4 additions and 6 deletions

View File

@ -19,10 +19,8 @@
#include <base/internal/output.h>
#include <base/internal/raw_write_string.h>
using namespace Genode;
Output &Raw::_output()
Genode::Output &Genode::Raw::_output()
{
struct Write_fn { void operator () (char const *s) { raw_write_string(s); } };