By default, VA will suggest two forms of make_shared/make_unique. The suggestions can be configured via the registry DWORD value named "SmartPointerSuggestionStyles".
The value is a bitfield and can be any combination of: 1 --> offers std::make_shared<CFoo>() 2 --> offers std::make_shared<CFoo>( 4 --> offers std::make_shared<CFoo>($end$)
The default value is 3 (1 | 2) -- two suggestions by default.
Each bit value adds a different suggestion to the suggestion list