clang format (#7017)

This commit is contained in:
Vitor K 2023-09-27 13:42:19 -03:00 committed by GitHub
parent 5ced2c7af9
commit 6cfb8e02a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 48 additions and 52 deletions

View file

@ -42,9 +42,7 @@ struct CaptureSession final {
#define MEMBER(type, name, func) \
struct type##Deleter { \
void operator()(type* ptr) { \
type##_##func(ptr); \
} \
void operator()(type* ptr) { type##_##func(ptr); } \
}; \
std::unique_ptr<type, type##Deleter> name