Skip to content

Commit 9fa86b8

Browse files
author
Format Bot
committed
style: Applied ROS C++ Style Guide
1 parent ae1e152 commit 9fa86b8

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

include/super_lib/am_life_cycle.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,8 +123,8 @@ class AMLifeCycle
123123
* @brief Function to be defined by the user.
124124
* Called at the end of transition from FINALIZED to power off.
125125
*/
126-
virtual void destroy();
127-
virtual void onDestroy();
126+
virtual void destroy();
127+
virtual void onDestroy();
128128
void doDestroy(bool success);
129129

130130
/**

include/super_lib/am_life_cycle_types.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ enum class LifeCycleState : std::uint8_t
3030
* status of the functionality of the node (i.e. is it operating to spec)
3131
*/
3232
enum class LifeCycleStatus : std::uint8_t
33-
{OK = brain_box_msgs::LifeCycleState::STATUS_OK,
33+
{
34+
OK = brain_box_msgs::LifeCycleState::STATUS_OK,
3435
WARN = brain_box_msgs::LifeCycleState::STATUS_WARN,
3536
ERROR = brain_box_msgs::LifeCycleState::STATUS_ERROR,
3637
LAST_STATUS = brain_box_msgs::LifeCycleState::STATUS_LAST

0 commit comments

Comments
 (0)