ReSharper 2018.1 Help

Code Completion

ReSharper | Options | Code Editing | C++ | Code Completion

On this page, you can adjust the way code completion works in C++.

ItemDescription
Show free functions in members completion

One common C++ coding practice is to prefer non-member non-friend functions to member functions. This is a great way to increase encapsulation and keep class interfaces as minimal as possible. When you type a dot (.) or an arrow (->) after an expression, free functions that accept the expression as the first parameter will be suggested in the completion list after member functions:

You can clear this check box if you do not want to have free functions in the completion suggestions.

Last modified: 20 August 2018