Skip to content

Commit 6166f8e

Browse files
authored
[NFC][clang] Fix -Wreorder in clang::PrinitingPolicy (#9904)
1 parent 0624465 commit 6166f8e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

clang/include/clang/AST/PrettyPrinter.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,9 @@ struct PrintingPolicy {
212212
/// \endcode
213213
unsigned SuppressTypedefs : 1;
214214

215+
/// When true, suppress printing final specifier.
216+
unsigned SuppressFinalSpecifier : 1;
217+
215218
/// When true, suppresses printing template arguments in names of C++
216219
/// constructors.
217220
unsigned SuppressTemplateArgsInCXXConstructors : 1;
@@ -220,9 +223,6 @@ struct PrintingPolicy {
220223
/// argument for the parameter.
221224
unsigned SuppressDefaultTemplateArgs : 1;
222225

223-
/// When true, suppress printing final specifier.
224-
unsigned SuppressFinalSpecifier : 1;
225-
226226
/// Whether we can use 'bool' rather than '_Bool' (even if the language
227227
/// doesn't actually have 'bool', because, e.g., it is defined as a macro).
228228
unsigned Bool : 1;

0 commit comments

Comments
 (0)