Skip to content

Commit

Permalink
test pr
Browse files Browse the repository at this point in the history
Signed-off-by: Y.Hisaki <[email protected]>
  • Loading branch information
yhisaki committed Dec 6, 2024
1 parent 1aba360 commit 4ff08a6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test-differential.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:

- name: Run clang-tidy
if: ${{ steps.get-changed-files.outputs.changed-files != '' }}
uses: autowarefoundation/autoware-github-actions/clang-tidy@v1
uses: yhisaki/autoware-github-actions/clang-tidy@clang-tidy-pr-comments
with:
rosdistro: humble
target-packages: ${{ steps.get-modified-packages.outputs.modified-packages }}
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:

- name: Run clang-tidy
if: ${{ steps.get-changed-files.outputs.changed-files != '' }}
uses: autowarefoundation/autoware-github-actions/clang-tidy@v1
uses: yhisaki/autoware-github-actions/clang-tidy@clang-tidy-pr-comments
with:
rosdistro: humble
target-packages: ${{ steps.get-modified-packages.outputs.modified-packages }}
Expand Down
7 changes: 7 additions & 0 deletions common/autoware_time_utils/src/time_utils/time_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,13 @@

namespace autoware::time_utils
{

class Hoge

Check failure on line 23 in common/autoware_time_utils/src/time_utils/time_utils.cpp

View workflow job for this annotation

GitHub Actions / cppcheck-differential

The class 'Hoge' does not declare a constructor although it has private member variables which likely require initialization. [noConstructor]

Check warning on line 23 in common/autoware_time_utils/src/time_utils/time_utils.cpp

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (Hoge)
{
private:
int a_;

Check failure on line 26 in common/autoware_time_utils/src/time_utils/time_utils.cpp

View workflow job for this annotation

GitHub Actions / cppcheck-differential

class member 'Hoge::a_' is never used. [unusedStructMember]
};

////////////////////////////////////////////////////////////////////////////////
std::chrono::nanoseconds interpolate(
std::chrono::nanoseconds a, std::chrono::nanoseconds b, float t) noexcept
Expand Down

0 comments on commit 4ff08a6

Please sign in to comment.