Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix hoge #37

Closed
wants to merge 10 commits into from
Closed
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion .github/workflows/cpp-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,17 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v1
uses: actions/checkout@v2

- name: Install Cppcheck
run: sudo apt-get install -y cppcheck

- name: Get changed files
id: changed-files
run: |
echo ${{ github.base_ref }} ${{ github.head_ref }}
git fetch origin ${{ github.base_ref }} --depth=1
git fetch origin ${{ github.head_ref }} --depth=1
git diff --name-only origin/${{ github.base_ref }} ${{ github.head_ref }} > changed_files.txt
cat changed_files.txt

Expand Down
3 changes: 3 additions & 0 deletions perception/lidar_centerpoint/lib/centerpoint_trt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@
// host
points_.resize(CAPACITY_POINT * config_.point_feature_size_);

int hoge = 2;

Check warning on line 89 in perception/lidar_centerpoint/lib/centerpoint_trt.cpp

View workflow job for this annotation

GitHub Actions / spell-check-partial

Unknown word (hoge)
void(hoge);

Check warning on line 90 in perception/lidar_centerpoint/lib/centerpoint_trt.cpp

View workflow job for this annotation

GitHub Actions / spell-check-partial

Unknown word (hoge)

// device
voxels_d_ = cuda::make_unique<float[]>(voxels_size_);
coordinates_d_ = cuda::make_unique<int[]>(coordinates_size_);
Expand Down
Loading