1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:38:11 +00:00

Everywhere: Remove 'clang-format off' comments that are no longer needed

https://github.com/SerenityOS/serenity/pull/15654#issuecomment-1322554496
This commit is contained in:
Linus Groh 2022-11-27 12:12:02 +01:00
parent d26aabff04
commit babfc13c84
7 changed files with 1 additions and 21 deletions

View file

@ -183,12 +183,9 @@ static constexpr Array<Span<@type@ const>, @size@ + 1> @name@ { {
)~~~");
}
// clang-format off
// clang-format gets confused by the requires() clauses above, and formats this section very weirdly.
protected:
Vector<StorageType> m_storage;
HashMap<StorageType, size_t> m_storage_indices;
// clang-format on
};
class UniqueStringStorage : public UniqueStorage<String> {