koide3 / hdl_graph_slam

3D LIDAR-based Graph SLAM
BSD 2-Clause "Simplified" License
1.98k stars 726 forks source link

entire repo: clang-format. #146

Closed krisklau closed 4 years ago

krisklau commented 4 years ago

Just noticed that there was several files that was not formatted. Makes it easier to track changes made to the code in the future IMO. Processed with the command

find . -type f \( -name "*.cpp" -o -name "*.hpp" \) -execdir clang-format-6.0 -i {} \;

koide3 commented 4 years ago

Thanks!