summaryrefslogtreecommitdiff
path: root/Kernel/Random.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-02-16 01:27:42 +0100
committerAndreas Kling <kling@serenityos.org>2020-02-16 01:27:42 +0100
commita356e4815098e5398e103aa69865bd6c88f7ad36 (patch)
tree50437c6444405f12671bce7f04a8c1b10cff70f8 /Kernel/Random.h
parentd42f0f46616168bdff492f880b3ea432a49f7345 (diff)
downloadserenity-a356e4815098e5398e103aa69865bd6c88f7ad36.zip
Kernel: Move all code into the Kernel namespace
Diffstat (limited to 'Kernel/Random.h')
-rw-r--r--Kernel/Random.h3
1 files changed, 3 insertions, 0 deletions
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 <AK/Types.h>
+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;
}
+}