From d36bc5aad01fabc8752648851e2382f47f61a17d Mon Sep 17 00:00:00 2001 From: triton Date: Wed, 16 Apr 2014 14:08:57 +0100 Subject: [PATCH] Changed GetterSetterToPropertyAdvancedPass visibility to public. This way it can be added to the passes by external users. --- src/Generator/Passes/GetterSetterToPropertyAdvancedPass.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator/Passes/GetterSetterToPropertyAdvancedPass.cs b/src/Generator/Passes/GetterSetterToPropertyAdvancedPass.cs index a4b32b75..cfd2d8a7 100644 --- a/src/Generator/Passes/GetterSetterToPropertyAdvancedPass.cs +++ b/src/Generator/Passes/GetterSetterToPropertyAdvancedPass.cs @@ -11,7 +11,7 @@ using Type = CppSharp.AST.Type; 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; // (a property needs to) be virtual or an override if either of its constituent methods are such)