Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 459 Bytes

README.md

File metadata and controls

14 lines (11 loc) · 459 Bytes

Hippo-Core

Our Website

This repository contains packages/libraries used on onboard/offboard devices and are required in every setup.

Check for formatting errors

find ./ -iname '*.hpp' -o -iname '*.cpp' | xargs clang-format --dry-run --style=file:./.clang-format

Apply formatting to all files

find ./ -iname '*.hpp' -o -iname '*.cpp' | xargs clang-format -i --style=file:./.clang-format