mirror of
https://github.com/jemalloc/jemalloc.git
synced 2026-07-23 21:23:06 +00:00
Update brace style.
Add braces around single-line blocks, and remove line breaks before function-opening braces. This resolves #537.
This commit is contained in:
@@ -1,7 +1,6 @@
|
||||
#include "test/jemalloc_test.h"
|
||||
|
||||
TEST_BEGIN(test_a0)
|
||||
{
|
||||
TEST_BEGIN(test_a0) {
|
||||
void *p;
|
||||
|
||||
p = a0malloc(1);
|
||||
@@ -11,8 +10,7 @@ TEST_BEGIN(test_a0)
|
||||
TEST_END
|
||||
|
||||
int
|
||||
main(void)
|
||||
{
|
||||
main(void) {
|
||||
return (test_no_malloc_init(
|
||||
test_a0));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user