diff options
Diffstat (limited to 'include/modules/suspend.h')
-rw-r--r-- | include/modules/suspend.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/modules/suspend.h b/include/modules/suspend.h index c2c56ca6f..2128be925 100644 --- a/include/modules/suspend.h +++ b/include/modules/suspend.h @@ -9,11 +9,13 @@ * Based on the original code of Services by Andy Church. */ +#pragma once + struct SuspendInfo { Anope::string what, by, reason; time_t when, expires; - SuspendInfo() { } - virtual ~SuspendInfo() { } + SuspendInfo() = default; + virtual ~SuspendInfo() = default; }; |