summaryrefslogtreecommitdiff
path: root/include/CommonAPI/Deployable.hpp
diff options
context:
space:
mode:
authorJuergen Gehring <juergen.gehring@bmw.de>2017-06-19 07:47:01 -0700
committerJuergen Gehring <juergen.gehring@bmw.de>2017-06-19 07:47:01 -0700
commit008f6c11f5371e93c06b3ed337326008d2031084 (patch)
treef25b96bab93d4b71496793d5944e054fc8d303af /include/CommonAPI/Deployable.hpp
parent66de998220d90116aa603d7458e245fe6094b4eb (diff)
downloadgenivi-common-api-runtime-008f6c11f5371e93c06b3ed337326008d2031084.tar.gz
CommonAPI 3.1.123.1.12
Diffstat (limited to 'include/CommonAPI/Deployable.hpp')
-rw-r--r--include/CommonAPI/Deployable.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/CommonAPI/Deployable.hpp b/include/CommonAPI/Deployable.hpp
index c260586..cf269e8 100644
--- a/include/CommonAPI/Deployable.hpp
+++ b/include/CommonAPI/Deployable.hpp
@@ -19,7 +19,8 @@ template<typename Type_, typename TypeDepl_>
struct Deployable : DeployableBase
{
Deployable(const TypeDepl_ *_depl = nullptr)
- : depl_(const_cast<TypeDepl_ *>(_depl)) {
+ : value_(),
+ depl_(const_cast<TypeDepl_ *>(_depl)) {
}
Deployable(const Type_ &_value, const TypeDepl_ *_depl)