Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
eisoku9618 committed Mar 19, 2024
1 parent a001c6a commit ad73c54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/openrave/robot.h
Original file line number Diff line number Diff line change
Expand Up @@ -1442,7 +1442,7 @@ enum EnvironmentBodyRemoverRestoreOptions : uint8_t
EBRRO_NoAbortOnInfoLost = 0, ///< will not abort even if any info cannot be restored.
EBRRO_AbortOnActiveManipulatorLost = 0b01, ///< will abort if active manipulator cannot be restored.
EBRRO_AbortOnGrabbedBodiesLost = 0b10, ///< will abort if grabbed bodies cannot be restored.
EBRRO_AbortOnInfoLost = EBRRO_AbortOnActiveManipulatorLost | EBRRO_AbortOnGrabbedBodiesLost; ///< will abort if any info cannot be restored.
EBRRO_AbortOnInfoLost = EBRRO_AbortOnActiveManipulatorLost | EBRRO_AbortOnGrabbedBodiesLost, ///< will abort if any info cannot be restored.
};

///\brief removes the robot from the environment temporarily while in scope
Expand Down

0 comments on commit ad73c54

Please sign in to comment.