Skip to content

Commit

Permalink
apply clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Uecker committed Nov 18, 2024
1 parent 2c8b5d7 commit 836bf9b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions cpp/include_example/src/example.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include <kiss_icp/pipeline/KissICP.hpp>

int main(){
int main() {
struct kiss_icp::pipeline::KISSConfig config;
config.deskew = true;
config.initial_threshold = 2.0;
Expand All @@ -11,5 +11,4 @@ int main(){
config.voxel_size = 1.0;
kiss_icp::pipeline::KissICP icp_pipeline{config};
// TODO: use pipeline here

}
2 changes: 1 addition & 1 deletion cpp/kiss_icp/src/core/Deskew.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

namespace {
/// TODO(Nacho) Explain what is the very important meaning of this param
constexpr double mid_pose_timestamp{0.5}; // 0.5 for middle of scan
constexpr double mid_pose_timestamp{0.5}; // 0.5 for middle of scan
} // namespace

namespace kiss_icp {
Expand Down

0 comments on commit 836bf9b

Please sign in to comment.