From a356e4815098e5398e103aa69865bd6c88f7ad36 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 16 Feb 2020 01:27:42 +0100 Subject: Kernel: Move all code into the Kernel namespace --- Kernel/Random.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Kernel/Random.h') diff --git a/Kernel/Random.h b/Kernel/Random.h index 75ddd2d783..1e112ca5d5 100644 --- a/Kernel/Random.h +++ b/Kernel/Random.h @@ -28,6 +28,8 @@ #include +namespace Kernel { + // NOTE: These API's are primarily about expressing intent/needs in the calling code. // We don't make any guarantees about actual fastness or goodness yet. @@ -50,3 +52,4 @@ inline T get_good_random() return value; } +} -- cgit v1.2.3