Browse Source

Fixed debugger display variable reference in Block class.

Fixes https://github.com/mono/CppSharp/issues/1113
pull/1139/head
João Matos 8 years ago committed by GitHub
parent
commit
4a34af1b56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/Generator/Utils/BlockGenerator.cs

2
src/Generator/Utils/BlockGenerator.cs

@ -52,7 +52,7 @@ namespace CppSharp @@ -52,7 +52,7 @@ namespace CppSharp
Fields,
}
[DebuggerDisplay("{BlockKind} | {Object}")]
[DebuggerDisplay("{Kind} | {Object}")]
public class Block : ITextGenerator
{
public TextGenerator Text { get; set; }

Loading…
Cancel
Save