diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-01-18 08:54:52 +0100 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-01-18 08:55:23 +0100 |
commit | bd280a087ecab30f94f7937513ee298c233fcba1 (patch) | |
tree | 1209c5adc664e81e664b6be95f45dad86facdcf0 /lib/events | |
parent | bc4a0f5d408d901f3c8f4dfeec0574ded04845bf (diff) | |
download | libquotient-bd280a087ecab30f94f7937513ee298c233fcba1.tar.gz libquotient-bd280a087ecab30f94f7937513ee298c233fcba1.zip |
Revise inline keyword usage
- Templates and constexpr imply inline
- A function called from a single site better be inlined.
Diffstat (limited to 'lib/events')
-rw-r--r-- | lib/events/event.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/events/event.h b/lib/events/event.h index 858972da..f10f6a8d 100644 --- a/lib/events/event.h +++ b/lib/events/event.h @@ -311,7 +311,7 @@ inline auto switchOnType(const BaseEventT& event, FnT&& fn) namespace _impl { // Using bool instead of auto below because auto apparently upsets MSVC template <class BaseT, typename FnT> - inline constexpr bool needs_downcast = + constexpr bool needs_downcast = std::is_base_of_v<BaseT, std::decay_t<fn_arg_t<FnT>>> && !std::is_same_v<BaseT, std::decay_t<fn_arg_t<FnT>>>; } |