Skip to content

Commit

Permalink
Merge pull request #56 from ArthurVal/fix/missing-header-guards
Browse files Browse the repository at this point in the history
Add missing header guards to time.hpp
  • Loading branch information
MaximilienNaveau authored Jan 31, 2025
2 parents e32e898 + 11423fe commit 9972c40
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions include/linear_feedback_controller/time.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#ifndef LINEAR_FEEDBACK_CONTROLLER__TIME_HPP_
#define LINEAR_FEEDBACK_CONTROLLER__TIME_HPP_

#include <chrono>

namespace linear_feedback_controller {
Expand All @@ -6,3 +9,5 @@ using TimePoint = std::chrono::time_point<std::chrono::high_resolution_clock,

using Duration = std::chrono::duration<double>;
} // namespace linear_feedback_controller

#endif

0 comments on commit 9972c40

Please sign in to comment.