summaryrefslogtreecommitdiff
path: root/implementation/configuration/include/e2e.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'implementation/configuration/include/e2e.hpp')
-rw-r--r--implementation/configuration/include/e2e.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/implementation/configuration/include/e2e.hpp b/implementation/configuration/include/e2e.hpp
index 705c92d..8345c2a 100644
--- a/implementation/configuration/include/e2e.hpp
+++ b/implementation/configuration/include/e2e.hpp
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2017 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
+// Copyright (C) 2014-2021 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
@@ -16,7 +16,7 @@ namespace vsomeip_v3 {
namespace cfg {
struct e2e {
- typedef std::map<std::string, std::string> custom_parameters_t;
+ using custom_parameters_t = std::map<std::string, std::string, std::less<>>;
e2e() :
variant(""),
@@ -25,7 +25,7 @@ struct e2e {
event_id(0) {
}
- e2e(std::string _variant, std::string _profile, service_t _service_id,
+ e2e(const std::string &_variant, const std::string &_profile, service_t _service_id,
event_t _event_id, custom_parameters_t&& _custom_parameters) :
variant(_variant),
profile(_profile),