uncrustify (#124)

This commit is contained in:
Dan Rose 2020-03-23 12:55:08 -05:00 committed by GitHub
parent 3ea93f27aa
commit b04ec25b38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -245,8 +245,9 @@ public:
}
const void * sequence_contents(const void * ptr_to_sequence) const override
{
if(sequence_size(ptr_to_sequence) == 0)
if (sequence_size(ptr_to_sequence) == 0) {
return nullptr;
}
return m_get_const_function(ptr_to_sequence, 0);
}
};