1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:08:12 +00:00

Kernel: Remove use of [[gnu::pure]].

I was messing around with this to tell the compiler that these functions
always return the same value no matter how many times you call them.

It doesn't really seem to improve code generation and it looks weird so
let's just get rid of it.
This commit is contained in:
Andreas Kling 2019-07-16 13:44:41 +02:00
parent 89c6064141
commit 3dac1f8ac5
5 changed files with 5 additions and 5 deletions

View file

@ -51,7 +51,7 @@ public:
RefPtr<Custody> m_host_custody;
};
[[gnu::pure]] static VFS& the();
static VFS& the();
VFS();
~VFS();