Skip to content

Commit ff0e857

Browse files
committed
format
1 parent 8f6bef5 commit ff0e857

1 file changed

Lines changed: 6 additions & 10 deletions

File tree

Framework/Core/test/test_ASoA.cxx

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1484,13 +1484,13 @@ DECLARE_SOA_COLUMN(UInt8, guint8, uint8_t);
14841484
DECLARE_SOA_COLUMN(UInt16, guint16, uint16_t);
14851485
DECLARE_SOA_COLUMN(UInt32, guint32, uint32_t);
14861486
DECLARE_SOA_COLUMN(UInt64, guint64, uint64_t);
1487-
}
1487+
} // namespace test
14881488

14891489
DECLARE_SOA_TABLE(UnsignedIntTest8, "TEST", "TSHI8", test::UInt8);
14901490
DECLARE_SOA_TABLE(UnsignedIntTest16, "TEST", "TSHI16", test::UInt16);
14911491
DECLARE_SOA_TABLE(UnsignedIntTest32, "TEST", "TSHI32", test::UInt32);
14921492
DECLARE_SOA_TABLE(UnsignedIntTest64, "TEST", "TSHI64", test::UInt64);
1493-
}
1493+
} // namespace o2::aod
14941494

14951495
TEST_CASE("TestUnsignedIntExpressions")
14961496
{
@@ -1501,8 +1501,7 @@ TEST_CASE("TestUnsignedIntExpressions")
15011501

15021502
TableBuilder b8;
15031503
auto writer8 = b8.cursor<o2::aod::UnsignedIntTest8>();
1504-
for (uint64_t i = 0; i < max8; i += (max8 / 100))
1505-
{
1504+
for (uint64_t i = 0; i < max8; i += (max8 / 100)) {
15061505
writer8(0, i);
15071506
}
15081507
auto t8 = b8.finalize();
@@ -1519,8 +1518,7 @@ TEST_CASE("TestUnsignedIntExpressions")
15191518

15201519
TableBuilder b16;
15211520
auto writer16 = b16.cursor<o2::aod::UnsignedIntTest16>();
1522-
for (uint64_t i = 0; i < max16; i += (max16 / 100))
1523-
{
1521+
for (uint64_t i = 0; i < max16; i += (max16 / 100)) {
15241522
writer16(0, i);
15251523
}
15261524
auto t16 = b16.finalize();
@@ -1537,8 +1535,7 @@ TEST_CASE("TestUnsignedIntExpressions")
15371535

15381536
TableBuilder b32;
15391537
auto writer32 = b32.cursor<o2::aod::UnsignedIntTest32>();
1540-
for (uint64_t i = 0; i < max32; i += (max32 / 100))
1541-
{
1538+
for (uint64_t i = 0; i < max32; i += (max32 / 100)) {
15421539
writer32(0, i);
15431540
}
15441541
auto t32 = b32.finalize();
@@ -1555,8 +1552,7 @@ TEST_CASE("TestUnsignedIntExpressions")
15551552

15561553
TableBuilder b64;
15571554
auto writer64 = b64.cursor<o2::aod::UnsignedIntTest64>();
1558-
for (uint64_t i = 0; i < max64; i += (max64 / 100))
1559-
{
1555+
for (uint64_t i = 0; i < max64; i += (max64 / 100)) {
15601556
writer64(0, i);
15611557
}
15621558
auto t64 = b64.finalize();

0 commit comments

Comments
 (0)