From 299fdd31bd8e1add3ac557a5e630de55b1b6659c Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Wed, 1 May 2019 13:03:59 +0100 Subject: COMPMID-2177 Fix clang warnings Change-Id: I4beacfd714ee3ed771fd174cce5d8009a2961380 Signed-off-by: Michalis Spyrou Reviewed-on: https://review.mlplatform.org/c/1065 Reviewed-by: Giuseppe Rossini Tested-by: Arm Jenkins --- src/core/utils/logging/LoggerRegistry.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/core/utils/logging/LoggerRegistry.cpp') diff --git a/src/core/utils/logging/LoggerRegistry.cpp b/src/core/utils/logging/LoggerRegistry.cpp index 99236d25c3..3a466963fd 100644 --- a/src/core/utils/logging/LoggerRegistry.cpp +++ b/src/core/utils/logging/LoggerRegistry.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017 ARM Limited. + * Copyright (c) 2017-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -66,7 +66,7 @@ std::shared_ptr LoggerRegistry::logger(const std::string &name) return (_loggers.find(name) != _loggers.end()) ? _loggers[name] : nullptr; } -void LoggerRegistry::create_reserved_loggers(LogLevel log_level, std::vector> printers) +void LoggerRegistry::create_reserved_loggers(LogLevel log_level, const std::vector> &printers) { std::lock_guard lock(_mtx); for(const auto &r : _reserved_loggers) -- cgit v1.2.1