Skip to content

Commit

Permalink
Revert "remove extra ;"
Browse files Browse the repository at this point in the history
This reverts commit 1c8f1e4.
  • Loading branch information
christianrauch committed Dec 16, 2024
1 parent 26819b2 commit 3dabe14
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/types.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ to_string(const libcamera::ControlType id);
template<libcamera::ControlType>
struct ControlTypeMap;

MAP(void, None)
MAP(bool, Bool)
MAP(uint8_t, Byte)
MAP(int32_t, Integer32)
MAP(int64_t, Integer64)
MAP(float, Float)
MAP(std::string, String)
MAP(libcamera::Rectangle, Rectangle)
MAP(libcamera::Size, Size)
MAP(void, None);
MAP(bool, Bool);
MAP(uint8_t, Byte);
MAP(int32_t, Integer32);
MAP(int64_t, Integer64);
MAP(float, Float);
MAP(std::string, String);
MAP(libcamera::Rectangle, Rectangle);
MAP(libcamera::Size, Size);

0 comments on commit 3dabe14

Please sign in to comment.