Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix uncrustify warnings #256

Merged
merged 1 commit into from
Jan 15, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions rosbag2_cpp/include/rosbag2_cpp/compression_options.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace rosbag2_cpp
* Modes are used to specify whether to compress by individual serialized bag messages or by file.
* rosbag2_cpp defaults to NONE.
*/
enum class ROSBAG2_CPP_PUBLIC CompressionMode : uint32_t
enum class ROSBAG2_CPP_PUBLIC CompressionMode: uint32_t
{
NONE = 0,
FILE,
Expand All @@ -40,7 +40,8 @@ enum class ROSBAG2_CPP_PUBLIC CompressionMode : uint32_t
* \param compression_mode A case insensitive string that is either "FILE" or "MESSAGE".
* \return CompressionMode NONE if compression_mode is invalid. FILE or MESSAGE otherwise.
*/
ROSBAG2_CPP_PUBLIC CompressionMode compression_mode_from_string(const std::string & compression_mode);
ROSBAG2_CPP_PUBLIC CompressionMode compression_mode_from_string(
const std::string & compression_mode);

/**
* Converts a rosbag2_cpp::CompressionMode enum into a string.
Expand Down