update clang-format (#666)

This commit is contained in:
ReenigneArcher
2023-01-02 11:17:02 -05:00
committed by GitHub
parent a7a9df3b9d
commit f9963ed39b
13 changed files with 1068 additions and 1375 deletions

View File

@@ -158,9 +158,9 @@ struct img_t {
public:
img_t() = default;
img_t(img_t &&) = delete;
img_t(const img_t &) = delete;
img_t &operator=(img_t &&) = delete;
img_t(img_t &&) = delete;
img_t(const img_t &) = delete;
img_t &operator=(img_t &&) = delete;
img_t &operator=(const img_t &) = delete;
std::uint8_t *data {};