Skip to content

Commit

Permalink
Add doxygen linters (#44)
Browse files Browse the repository at this point in the history
Signed-off-by: Louise Poubel <[email protected]>
  • Loading branch information
chapulina authored Mar 14, 2022
1 parent c7c4a54 commit 959e8e1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
uses: ignition-tooling/action-ignition-ci@focal
with:
cpplint-enabled: true
doxygen-enabled: true
jammy-ci:
runs-on: ubuntu-latest
name: Ubuntu Jammy CI
Expand Down
6 changes: 3 additions & 3 deletions include/ignition/utils/ImplPtr.hh
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ namespace ignition
/// };
/// \endcode
///
/// When constructing the \code{dataPtr} object, pass it
/// \code{MakeImpl<Implementation>(/* ... args ... */)} in the
/// When constructing the `dataPtr` object, pass it
/// `MakeImpl<Implementation>(/* ... args ... */)` in the
/// initialization list of your class. \sa MakeImpl<T>()
///
/// This class was inspired by the following blog post:
Expand Down Expand Up @@ -224,7 +224,7 @@ namespace ignition
/// UniqueImplPtr object's constructor will efficiently move this newly
/// created object into it.
template <class T, typename... Args>
UniqueImplPtr<T> MakeUniqueImpl(Args &&...args);
UniqueImplPtr<T> MakeUniqueImpl(Args &&..._args);
} // namespace utils
} // namespace ignition

Expand Down
2 changes: 1 addition & 1 deletion include/ignition/utils/NeverDestroyed.hh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ namespace utils
/// Originally copied from https://github.com/RobotLocomotion/drake/blob/v0.36.0/common/never_destroyed.h
/// Originally licensed BSD 3-Clause (https://github.com/RobotLocomotion/drake/blob/v0.36.0/LICENSE.TXT)
/// Re-licensed Apache-2.0 with permission from:
/// @jwnimmer-tri (https://github.com/ignitionrobotics/ign-utils/pull/31#issuecomment-989173512)
/// jwnimmer-tri (https://github.com/ignitionrobotics/ign-utils/pull/31#issuecomment-989173512)
///
/// Wraps an underlying type T such that its storage is a direct member field
/// of this object (i.e., without any indirection into the heap), but *unlike*
Expand Down

0 comments on commit 959e8e1

Please sign in to comment.