mirror of
https://github.com/mfontanini/libtins
synced 2026-01-23 02:35:57 +01:00
Eliminate unnecessary explicit template parameter specification
This commit is contained in:
@@ -582,7 +582,7 @@ namespace Tins {
|
||||
try {
|
||||
// If the functor returns false, we're done
|
||||
#if TINS_IS_CXX11
|
||||
if (!Tins::Internals::invoke_loop_cb<Functor, Packet>(function, *it))
|
||||
if (!Tins::Internals::invoke_loop_cb(function, *it))
|
||||
return;
|
||||
#else
|
||||
if(!function(*it))
|
||||
|
||||
Reference in New Issue
Block a user