Skip to content

Commit

Permalink
Uncrustify & Windows fix
Browse files Browse the repository at this point in the history
Signed-off-by: tempate <[email protected]>
  • Loading branch information
Tempate committed Oct 19, 2023
1 parent 1e9ab84 commit ea4cd07
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ddspipe_core/include/ddspipe_core/types/topic/Topic.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ struct Topic : public ITopic, public IConfiguration
const ITopic& other) const noexcept override;

DDSPIPE_CORE_DllAPI
virtual Topic& operator = (
virtual Topic& operator =(
const Topic& other) noexcept;

/////////////////////////
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ struct DdsTopic : public DistributedTopic
// OPERATORS
/////////////////////////

virtual DdsTopic& operator = (
const DdsTopic& other) noexcept;
DDSPIPE_CORE_DllAPI
virtual DdsTopic& operator =(
const DdsTopic& other) noexcept;

/////////////////////////
// METHODS
Expand Down
2 changes: 1 addition & 1 deletion ddspipe_core/src/cpp/types/topic/dds/DdsTopic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ bool DdsTopic::is_valid_dds_topic(
DdsTopic& DdsTopic::operator = (
const DdsTopic& other) noexcept
{
Topic::operator=(other);
Topic::operator =(other);

this->type_name = other.type_name;

Expand Down

0 comments on commit ea4cd07

Please sign in to comment.