ReSharper 2020.3 Help

Code Style

ReSharper | Options | Code Editing | C++ | Syntax Style

Preferences configurable on this page help you enforce code syntax style— how to use interchangeable language syntax constructions. These preferences are taken into account when ReSharper produces new code with code completion and code generation features, applies code templates and performs refactorings. They can also be applied to the existing code by using code cleanup with the corresponding settings.

Include directives

Use forward slash in include directivesUse this checkbox to choose the preferred path separator for include directives: forward slash or backward slash.
Prefer to use forward declarations if possibleIf this option is selected, the new items are created with the forward declaration in the header file.
Use paths relative to the source fileYou can use this selector to configure how ReSharper inserts paths to source files when importing types with a quick-fix or with Import Symbol Completion.
Use angle brackets instead of quotesBy default, generated include directives are added in quotes, if necessary, you can use this selector to specify cases where generated include directives are added in angle brackets.

Position of cv-qualifiers

Put cv-qualifiers before typeIf this option is selected, the const, volatile, and mutable qualifiers are put before the type specifier. Otherwise, they are put after the type specifier.
Put 'const' before 'volatile'Defines the order of cv-qualifiers.

Initialization

Default pointer initializer You can specify 0, nullptr or NULL as the preferred initializer for pointer initializers, for example: const char *foo = nullptr.
Use uniform initialization in member initializersBy default, ReSharper uses C++03 style when generating initializers (for example when you generate constructors or apply a quick-fix that inserts initializer into an existing constructor). You can select this checkbox to enable uniform initialization in the above mentioned cases.
Prefer uniform initialization in NSDMIsThis option lets you configure how ReSharper generates non-static data member initializations (NSDMIs) when applying its features. Fore example, when you apply a quick-fix Alt+Enter on the uninitialized field in the following code
class test { int field; };
ReSharper will generate a uniform initialization int field{0}; when the option is enabled, and int field = 0; if the option is disabled.

Refactorings

Insert type alias instead of typedef in the 'Introduce Type' refactoringUse this checkbox to make the Introduce Typedef refactoring use type alias instead of typedef. For more information, see Aliases and typedefs (C++) on Microsoft Docs.

Generate

Use trailing return types in generated function declarationsIf this option is enabled, various code generation features will create function declarations with trailing return types instead of using the classic return type style.
Last modified: 06 April 2021