summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/cpp/UNI-1337.cpp
blob: 59635c19f1ab8c97ac66949c4a8729b34c69d5ec (plain)
1
2
3
4
5
6
7
8
9
// Runtime\Allocator\BucketAllocator.cpp

void foo()
{
    void* p1 = new(ptr) Block(bucketsSize);
    // becomes...
    void* p1 = new(ptr)Block(bucketsSize);
    // missing space after ')'
}