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

Kernel: Make TimerId a distinct type

Well, that was easy\! :^)
This commit is contained in:
Ben Wiederhake 2021-02-28 00:01:47 +01:00 committed by Andreas Kling
parent 94e0a603f2
commit 65b36e42b8
2 changed files with 2 additions and 2 deletions

View file

@ -36,7 +36,7 @@
namespace Kernel {
typedef u64 TimerId;
TYPEDEF_DISTINCT_ORDERED_ID(u64, TimerId);
class Timer : public RefCounted<Timer>
, public InlineLinkedListNode<Timer> {