diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-07-16 15:58:52 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-17 08:40:10 +0200 |
commit | 3db9706e57d160077f2c1b4d98efb8f5558805e4 (patch) | |
tree | ed40bb5e8a173d88320dbdf57352cd4cbf730c99 /Kernel | |
parent | a17fbd98e735e66a559f71583987b507aea483ba (diff) | |
download | serenity-3db9706e57d160077f2c1b4d98efb8f5558805e4.zip |
Kernel: Remove unused Alarm.h
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/Alarm.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/Kernel/Alarm.h b/Kernel/Alarm.h deleted file mode 100644 index ba8fb6211f..0000000000 --- a/Kernel/Alarm.h +++ /dev/null @@ -1,9 +0,0 @@ -#pragma once - -class Alarm { -public: - Alarm() {} - virtual ~Alarm() {} - - virtual bool is_ringing() const = 0; -}; |