1
0
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:
Eric Cornelius
2015-02-25 11:04:42 -05:00
parent 87207a8091
commit c304dc08c4

View File

@@ -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))