Skip to content

Commit

Permalink
remove extra ;
Browse files Browse the repository at this point in the history
  • Loading branch information
christianrauch committed Dec 29, 2024
1 parent 3b07894 commit 8a99211
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 8a99211

Please sign in to comment.