From c6d0e757b841ed0687e4562d97cdc309b39c3e30 Mon Sep 17 00:00:00 2001 From: Hyunjin Park Date: Wed, 25 Mar 2015 16:18:43 +0900 Subject: [PATCH] build error fix - STL_MAP issue from gcc 4.9 Change-Id: I862b42b531fc18069139cfccb36548db2c26a2c4 --- src/callhistory/callhistory_utils.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/callhistory/callhistory_utils.cc b/src/callhistory/callhistory_utils.cc index 1458194c..a669ecc8 100644 --- a/src/callhistory/callhistory_utils.cc +++ b/src/callhistory/callhistory_utils.cc @@ -177,7 +177,7 @@ void CallHistoryUtils::parseLogType(contacts_phone_log_type_e log_type, picojson } if (features.size() > 0) { - obj.insert(std::make_pair(STR_TAGS, features)); + obj.insert(std::make_pair(STR_TAGS, picojson::value(features))); } } -- 2.34.1