Skip to content
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
3 changes: 1 addition & 2 deletions include/rfl/generic/Writer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ namespace rfl::generic {

/// Writer for the Generic type - a dynamic, format-agnostic data structure.
/// Constructs Generic values that can be converted to any serialization format.
/// The Generic type provides a common intermediate representation useful for
/// The Generic type provides a common intermediate representation useful for
/// format conversions and dynamic data manipulation.
struct RFL_API Writer {
struct OutputArray {
Expand Down Expand Up @@ -147,7 +147,6 @@ struct RFL_API Writer {
} else {
static_assert(always_false_v<T>, "Unsupported type");
}
return OutputVarType{};
}

private:
Comment on lines 150 to 152
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The private: access specifier is redundant here as the preceding section (starting at line 136) is already private. You can remove it and the extra whitespace to simplify the class definition.

  }

Expand Down
Loading