From 3f8eebd7124f9c4ea2b7b2dd2baf49feb30d8675 Mon Sep 17 00:00:00 2001 From: Sangyoon Jang Date: Wed, 29 May 2019 19:05:16 +0900 Subject: [PATCH] Fix namespace of StepCreateRecoveryFile This step should be included at "recovery" namespace. Change-Id: Id12a75327641b3d75bdb35b5d132d3e9c436b54f Signed-off-by: Sangyoon Jang --- src/common/step/recovery/step_create_recovery_file.cc | 4 ++-- src/common/step/recovery/step_create_recovery_file.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/common/step/recovery/step_create_recovery_file.cc b/src/common/step/recovery/step_create_recovery_file.cc index 6495d65..62a2508 100644 --- a/src/common/step/recovery/step_create_recovery_file.cc +++ b/src/common/step/recovery/step_create_recovery_file.cc @@ -25,7 +25,7 @@ namespace bf = boost::filesystem; namespace common_installer { -namespace configuration { +namespace recovery { Step::Status StepCreateRecoveryFile::process() { std::string recovery_filename = context_->pkg_type.get() + "-recovery"; @@ -63,5 +63,5 @@ Step::Status StepCreateRecoveryFile::clean() { } -} // namespace configuration +} // namespace recovery } // namespace common_installer diff --git a/src/common/step/recovery/step_create_recovery_file.h b/src/common/step/recovery/step_create_recovery_file.h index b4fcdcb..b5ff833 100644 --- a/src/common/step/recovery/step_create_recovery_file.h +++ b/src/common/step/recovery/step_create_recovery_file.h @@ -13,7 +13,7 @@ #include "common/step/step.h" namespace common_installer { -namespace configuration { +namespace recovery { class StepCreateRecoveryFile : public Step { public: @@ -27,7 +27,7 @@ class StepCreateRecoveryFile : public Step { STEP_NAME(CreateRecoveryFile) }; -} // namespace configuration +} // namespace recovery } // namespace common_installer #endif // COMMON_STEP_RECOVERY_STEP_CREATE_RECOVERY_FILE_H_ -- 2.7.4