From 1afcd41a906e6417925e80578c0d850d269dc008 Mon Sep 17 00:00:00 2001 From: John Newbery Date: Thu, 8 Oct 2020 12:18:28 +0100 Subject: [net] Remove CombinerAll This was introduced in 9519a9a4 for use with boost signals. Boost signals have not been used in net since 8ad663c1, so this code is unused --- src/net.h | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'src/net.h') diff --git a/src/net.h b/src/net.h index 1051511f54..2b99d3bd9d 100644 --- a/src/net.h +++ b/src/net.h @@ -595,21 +595,6 @@ void InterruptMapPort(); void StopMapPort(); uint16_t GetListenPort(); -struct CombinerAll -{ - typedef bool result_type; - - template - bool operator()(I first, I last) const - { - while (first != last) { - if (!(*first)) return false; - ++first; - } - return true; - } -}; - /** * Interface for message handling */ -- cgit v1.2.3