From 0521de668aecbb5a0e9b1444b2568ed9b57ad267 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 29 Jul 2019 23:07:02 -0400 Subject: [PATCH] Omits redundant qualifier. This code can't be anything but `inline`. --- ClockReceiver/ClockReceiver.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ClockReceiver/ClockReceiver.hpp b/ClockReceiver/ClockReceiver.hpp index c929aa186..e19299fb3 100644 --- a/ClockReceiver/ClockReceiver.hpp +++ b/ClockReceiver/ClockReceiver.hpp @@ -149,7 +149,7 @@ template class WrappedInt { Flushes the value in @c this. The current value is returned, and the internal value is reset to zero. */ - forceinline template Result flush() { + template Result flush() { // Jiggery pokery here; switching to function overloading avoids // the namespace-level requirement for template specialisation. Result r;