We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eff9b07 commit 5dc239aCopy full SHA for 5dc239a
src/AST/Type.cs
@@ -1,5 +1,6 @@
1
using System;
2
using System.Collections.Generic;
3
+using System.Diagnostics;
4
using System.Linq;
5
using CppSharp.AST.Extensions;
6
@@ -8,6 +9,7 @@ namespace CppSharp.AST
8
9
/// <summary>
10
/// Represents a C++ type.
11
/// </summary>
12
+ [DebuggerDisplay("{ToString()} [{GetType().Name}]")]
13
public abstract class Type : ICloneable
14
{
15
public static Func<Type, string> TypePrinterDelegate;
0 commit comments