summaryrefslogtreecommitdiff
path: root/Kernel
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-07-16 15:58:52 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-07-17 08:40:10 +0200
commit3db9706e57d160077f2c1b4d98efb8f5558805e4 (patch)
treeed40bb5e8a173d88320dbdf57352cd4cbf730c99 /Kernel
parenta17fbd98e735e66a559f71583987b507aea483ba (diff)
downloadserenity-3db9706e57d160077f2c1b4d98efb8f5558805e4.zip
Kernel: Remove unused Alarm.h
Diffstat (limited to 'Kernel')
-rw-r--r--Kernel/Alarm.h9
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;
-};