Clang-format: set DerivePointerAlignment to false

This commit is contained in:
Benoit Blanchon
2022-08-09 16:52:17 +02:00
parent 62e83133cd
commit 8002722f3b
53 changed files with 514 additions and 513 deletions

View File

@@ -9,7 +9,7 @@
namespace ARDUINOJSON_NAMESPACE {
template <typename TAdaptedString>
inline VariantData *objectGetMember(const CollectionData *obj,
inline VariantData* objectGetMember(const CollectionData* obj,
TAdaptedString key) {
if (!obj)
return 0;
@@ -17,7 +17,7 @@ inline VariantData *objectGetMember(const CollectionData *obj,
}
template <typename TAdaptedString>
void objectRemove(CollectionData *obj, TAdaptedString key) {
void objectRemove(CollectionData* obj, TAdaptedString key) {
if (!obj)
return;
obj->removeMember(key);