From 5597fe5fffeaf46b3a96f46365dc8a4041b65fa4 Mon Sep 17 00:00:00 2001 From: hyunho Date: Thu, 29 Aug 2019 15:59:32 +0900 Subject: Remove unused constructor Change-Id: Id4a60d79ff1163f2f9ce4cb2b2effaa7f6dcb06c Signed-off-by: hyunho --- include/bundle_cpp.h | 6 ------ src/bundle_cpp.cc | 4 ---- 2 files changed, 10 deletions(-) diff --git a/include/bundle_cpp.h b/include/bundle_cpp.h index 2abc522..33e9176 100644 --- a/include/bundle_cpp.h +++ b/include/bundle_cpp.h @@ -75,12 +75,6 @@ class EXPORT_API Bundle final { */ KeyInfo(const bundle_keyval_t* handle, std::string name); - /** - * @brief Constructor. - * @since_tizen 5.5 - */ - KeyInfo(); - /** * @brief Destructor. * @since_tizen 5.5 diff --git a/src/bundle_cpp.cc b/src/bundle_cpp.cc index 2e6f30b..2e5e6ca 100644 --- a/src/bundle_cpp.cc +++ b/src/bundle_cpp.cc @@ -91,10 +91,6 @@ Bundle::KeyInfo::KeyInfo(const bundle_keyval_t* handle, std::string name) : impl_(new Impl(this, handle, std::move(name))) { } -Bundle::KeyInfo::KeyInfo() - : impl_(new Impl(this)) { -} - Bundle::KeyInfo::~KeyInfo() { } -- cgit v1.2.3