Skip to content

Commit d208d9f

Browse files
committed
Move most of cvd/cli/commands/start.cpp into a private namespace
`NewCvdStartCommandHandler` is the only symbol exposed by the header, so the others shouldn't be part of the `cuttlefish` namespace.
1 parent cb839a5 commit d208d9f

File tree

1 file changed

+2
-2
lines changed
  • base/cvd/cuttlefish/host/commands/cvd/cli/commands

1 file changed

+2
-2
lines changed

base/cvd/cuttlefish/host/commands/cvd/cli/commands/start.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,8 +246,6 @@ Result<std::unique_ptr<OperatorControlConn>> PreregisterGroup(
246246
return operator_conn;
247247
}
248248

249-
} // namespace
250-
251249
class CvdStartCommandHandler : public CvdCommandHandler {
252250
public:
253251
CvdStartCommandHandler(InstanceManager& instance_manager)
@@ -682,6 +680,8 @@ Result<std::string> CvdStartCommandHandler::DetailedHelp(
682680
return kDetailedHelpText;
683681
}
684682

683+
} // namespace
684+
685685
std::unique_ptr<CvdCommandHandler> NewCvdStartCommandHandler(
686686
InstanceManager& instance_manager) {
687687
return std::unique_ptr<CvdCommandHandler>(

0 commit comments

Comments
 (0)