diff options
Diffstat (limited to 'init/action.cpp')
-rw-r--r-- | init/action.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/init/action.cpp b/init/action.cpp index 206100ece..69003917b 100644 --- a/init/action.cpp +++ b/init/action.cpp @@ -24,6 +24,9 @@ using android::base::Join; +namespace android { +namespace init { + Command::Command(BuiltinFunction f, const std::vector<std::string>& args, int line) : func_(f), args_(args), line_(line) {} @@ -349,3 +352,6 @@ void ActionParser::EndSection() { action_manager_->AddAction(std::move(action_)); } } + +} // namespace init +} // namespace android |