summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Dickow <jjdickow@gmail.com>2016-04-12 09:02:11 -0400
committerJustin Dickow <jjdickow@gmail.com>2016-04-12 09:02:11 -0400
commitab8abfe2d615703a0d775a2f0795a632102bbb76 (patch)
tree8f74ecedf8f0a30718910f37c31c7a234f434d9a
parent6808a52562978f1e01899573d77b47ad33dccff3 (diff)
downloadsdl_core-hotfix/14.tar.gz
Wrap unused param (while logger is off) in ifdefhotfix/14
Have to do this because compiler treating warnings as errors
-rw-r--r--src/components/application_manager/src/commands/mobile/system_request.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/application_manager/src/commands/mobile/system_request.cc b/src/components/application_manager/src/commands/mobile/system_request.cc
index df97322f71..c0b8b0ebf7 100644
--- a/src/components/application_manager/src/commands/mobile/system_request.cc
+++ b/src/components/application_manager/src/commands/mobile/system_request.cc
@@ -51,9 +51,10 @@ namespace application_manager {
namespace {
CREATE_LOGGERPTR_LOCAL(logger_, "ApplicationManager")
-
+#ifdef ENABLE_LOG
const char* kQueryAppsValidationFailedPrefix =
":QUERY_APPS_VALIDATION_FAILED: ";
+#endif
const unsigned int kVrSynonymLengthMax = 40U;
const unsigned int kVrSynonymLengthMin = 1U;