Browse Source

Changed GetterSetterToPropertyAdvancedPass visibility to public.

This way it can be added to the passes by external users.
pull/226/merge
triton 11 years ago
parent
commit
d36bc5aad0
  1. 2
      src/Generator/Passes/GetterSetterToPropertyAdvancedPass.cs

2
src/Generator/Passes/GetterSetterToPropertyAdvancedPass.cs

@ -11,7 +11,7 @@ using Type = CppSharp.AST.Type;
namespace CppSharp.Passes namespace CppSharp.Passes
{ {
class GetterSetterToPropertyAdvancedPass : TranslationUnitPass public class GetterSetterToPropertyAdvancedPass : TranslationUnitPass
{ {
// collect all types of methods first to be able to match pairs and detect virtuals and overrides; // collect all types of methods first to be able to match pairs and detect virtuals and overrides;
// (a property needs to) be virtual or an override if either of its constituent methods are such) // (a property needs to) be virtual or an override if either of its constituent methods are such)

Loading…
Cancel
Save