Быстрый вопрос:
У меня есть код , который выглядит следующим образом:
if (interactive)
ret = main_interactive(ctx, debug, use_aio);
else
ret = main_server(ctx, debug);
/*
* In case we got here through an error in the main thread make sure all
* the worker threads are signaled to shutdown.
*/
, когда я запускаю его в формате clang 7.0.1-8 (debian ) (с этим .clang-форматом файлом), я получаю this :
if (interactive)
ret = main_interactive(ctx, debug, use_aio);
else
ret = main_server(ctx, debug);
/*
* In case we got here through an error in the main thread make sure all
* the worker threads are signaled to shutdown.
*/
Вы видите, что первая строка блока комментариев имеет неправильный отступ .
Есть предложения?