mirror of
https://github.com/mmueller41/genode.git
synced 2026-01-21 20:42:56 +01:00
When compiling this code, clang complains reference to 'Sandbox' is ambiguous. It can either mean ::Sandbox namespace from os/src/lib/sandbox/types.h, or Genode::Sandbox declared in repos/os/include/os/sandbox.h. Since the code refers to ::Sandbox::Child and its already in ::Sandbox namespace we can just drop "Sandbox" and refer to just Child, which makes clang happy. Issue #3938