From: Hyunjin Park Date: Wed, 25 Mar 2015 07:18:43 +0000 (+0900) Subject: build error fix - STL_MAP issue from gcc 4.9 X-Git-Tag: submit/tizen_tv/20150603.064601~1^2~245^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c6d0e757b841ed0687e4562d97cdc309b39c3e30;p=platform%2Fcore%2Fapi%2Fwebapi-plugins.git build error fix - STL_MAP issue from gcc 4.9 Change-Id: I862b42b531fc18069139cfccb36548db2c26a2c4 --- 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))); } }