suppress build warning 20/75720/1 accepted/tizen/common/20160621.184524 accepted/tizen/ivi/20160622.093652 accepted/tizen/mobile/20160622.093542 accepted/tizen/tv/20160622.093611 accepted/tizen/wearable/20160622.093632 submit/tizen/20160621.063045
authorjongmyeongko <jongmyeong.ko@samsung.com>
Tue, 21 Jun 2016 06:12:10 +0000 (15:12 +0900)
committerjongmyeongko <jongmyeong.ko@samsung.com>
Tue, 21 Jun 2016 06:12:10 +0000 (15:12 +0900)
Change-Id: I783093faacd5ace9b303af90ecf5bb4d7ee8d195
Signed-off-by: jongmyeongko <jongmyeong.ko@samsung.com>
src/common/feature_validator.cc

index 9e6900e..c7f767e 100644 (file)
@@ -58,7 +58,7 @@ bool FeatureValidator::Validate(std::string* error) {
 }
 
 bool FeatureValidator::ValidateBoolean(
-    const std::string& feature, const std::string& value, std::string* error) {
+    const std::string& feature, const std::string& /* value */, std::string* error) {
   bool supported = false;
   int ret = system_info_get_platform_bool(feature.c_str(), &supported);
   if (ret != SYSTEM_INFO_ERROR_NONE) {
@@ -70,7 +70,7 @@ bool FeatureValidator::ValidateBoolean(
 }
 
 bool FeatureValidator::ValidateInteger(
-    const std::string& feature, const std::string& value, std::string* error) {
+    const std::string& feature, const std::string& /* value */, std::string* error) {
   int platform_value = 0;
   int ret = system_info_get_platform_int(feature.c_str(), &platform_value);
   if (ret != SYSTEM_INFO_ERROR_NONE) {
@@ -82,7 +82,7 @@ bool FeatureValidator::ValidateInteger(
 }
 
 bool FeatureValidator::ValidateString(
-    const std::string& feature, const std::string& value, std::string* error) {
+    const std::string& feature, const std::string& /* value */, std::string* error) {
   char* text = nullptr;
   BOOST_SCOPE_EXIT_ALL(text) {
     free(text);