From c7f6a64da8b4eda85e1a232142c1228fa6d93426 Mon Sep 17 00:00:00 2001 From: vng Date: Mon, 23 May 2011 20:56:30 +0300 Subject: [PATCH] Compilation fix. --- generator/osm2type.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generator/osm2type.cpp b/generator/osm2type.cpp index 3b5d32ecb5..8e68c4e869 100644 --- a/generator/osm2type.cpp +++ b/generator/osm2type.cpp @@ -479,7 +479,7 @@ namespace ftype { //if (get_mark_value(k, v) == -1) // continue; - utils::TokenizeString(v, ";", tags_wrapper(k, toDo, res)); + strings::Tokenize(v, ";", tags_wrapper(k, toDo, res)); if (res) return res; } }