mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 06:48:06 +02:00
radv/clang-format: Do not indent C++ modifiers
Turns
class asd {
private:
};
into
class asd {
private:
};
Reviewed-by: Friedrich Vock <friedrich.vock@gmx.de>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24271>
This commit is contained in:
parent
ba8d3afa56
commit
f51227d253
2 changed files with 4 additions and 2 deletions
|
|
@ -1,4 +1,6 @@
|
|||
BasedOnStyle: InheritParentConfig
|
||||
DisableFormat: false
|
||||
|
||||
AccessModifierOffset: -3
|
||||
|
||||
ColumnLimit: 120
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
#include <list>
|
||||
class radv_llvm_per_thread_info {
|
||||
public:
|
||||
public:
|
||||
radv_llvm_per_thread_info(enum radeon_family arg_family, enum ac_target_machine_options arg_tm_options,
|
||||
unsigned arg_wave_size)
|
||||
: family(arg_family), tm_options(arg_tm_options), wave_size(arg_wave_size), passes(NULL)
|
||||
|
|
@ -62,7 +62,7 @@ class radv_llvm_per_thread_info {
|
|||
}
|
||||
struct ac_llvm_compiler llvm_info;
|
||||
|
||||
private:
|
||||
private:
|
||||
enum radeon_family family;
|
||||
enum ac_target_machine_options tm_options;
|
||||
unsigned wave_size;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue