Format all C++ and Java code via clang-format

Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
This commit is contained in:
Konstantin Pastbin
2025-08-17 14:32:37 +07:00
parent 9f0290c0ec
commit bfffa1fff4
2169 changed files with 56441 additions and 64188 deletions

View File

@@ -101,9 +101,9 @@ public:
};
MapUint32ToValue(Reader & reader, ReadBlockCallback const & readBlockCallback)
: m_reader(reader), m_readBlockCallback(readBlockCallback)
{
}
: m_reader(reader)
, m_readBlockCallback(readBlockCallback)
{}
/// @name Tries to get |value| for key identified by |id|.
/// @returns false if table does not have entry for this id.
@@ -284,8 +284,7 @@ public:
}
{
succinct::elias_fano::elias_fano_builder builder(offsets.empty() ? 0 : offsets.back() + 1,
offsets.size());
succinct::elias_fano::elias_fano_builder builder(offsets.empty() ? 0 : offsets.back() + 1, offsets.size());
for (auto const & offset : offsets)
builder.push_back(offset);