Browse Source

Added a new parameter kind "OperatorParameter" to represent synthesized overloaded operator parameters.

pull/1/head
triton 13 years ago
parent
commit
8a9fd2f0e2
  1. 3
      src/Bridge/Function.cs

3
src/Bridge/Function.cs

@ -24,7 +24,8 @@ namespace Cxxi @@ -24,7 +24,8 @@ namespace Cxxi
public enum ParameterKind
{
Regular,
HiddenStructureReturn
HiddenStructureReturn,
OperatorParameter
}
public class Parameter : Declaration, ITypedDecl

Loading…
Cancel
Save