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
commit 3dac1f8ac5
Notes: sideshowbarker 2024-07-19 13:14:42 +09:00
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();