Skip to content

Commit

Permalink
Fix 'using' visibility
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Carroll <[email protected]>
  • Loading branch information
mjcarroll committed Apr 5, 2022
1 parent f094cad commit 84dbb6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion testing/include/ignition/common/testing/BazelTestPaths.hh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ namespace ignition::common::testing
class BazelTestPaths: public TestPaths
{
/// \brief Constructor from TestPaths
public: IGNITION_COMMON_TESTING_VISIBLE using TestPaths::TestPaths;
public: using TestPaths::TestPaths;

/// \brief Destructor
public: IGNITION_COMMON_TESTING_VISIBLE ~BazelTestPaths() override;
Expand Down
2 changes: 1 addition & 1 deletion testing/include/ignition/common/testing/CMakeTestPaths.hh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ namespace ignition::common::testing
class CMakeTestPaths: public TestPaths
{
/// \brief Constructor from TestPaths
public: IGNITION_COMMON_TESTING_VISIBLE using TestPaths::TestPaths;
public: using TestPaths::TestPaths;

/// \brief Destructor
public: IGNITION_COMMON_TESTING_VISIBLE ~CMakeTestPaths() override;
Expand Down

0 comments on commit 84dbb6c

Please sign in to comment.