C++ code should be in the autoware namespace #4117
Labels
component:system
System design and integration.
type:guidelines
Development, style, or operational guidelines of the project.
Checklist
Description
Current C++ code does not follow a unified convention for namespaces. According to the Google C++ Style Guide (which the ROS Style guide is based upon) code must be under a namespace that matches the name of the project https://google.github.io/styleguide/cppguide.html#Namespaces
Purpose
autoware
Possible approaches
The most straightforward approach is to just add all software to the
autoware
namespace, however, we might want to also add another subnamespace for the component the code is part of (i.e.perception
,localization
, etc.)Definition of done
All the code is under either the
autoware
namespace or a subnamespace of itThe text was updated successfully, but these errors were encountered: