From 96807088bf27c3790e26c085c4f290ee0a65d341 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Mon, 15 Feb 2016 15:35:50 +0300 Subject: [PATCH] Universal reference in Tokenizer. --- base/string_utils.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base/string_utils.hpp b/base/string_utils.hpp index f0cf1287da..446e65ad0b 100644 --- a/base/string_utils.hpp +++ b/base/string_utils.hpp @@ -165,8 +165,8 @@ public: typedef TokenizeIterator > SimpleTokenizer; -template -void Tokenize(string const & str, char const * delims, FunctorT f) +template +void Tokenize(string const & str, char const * delims, TFunctor && f) { SimpleTokenizer iter(str, delims); while (iter)