diff --git a/src/Bridge/Library.cs b/src/Bridge/Library.cs index 03343f7c..1c5f9628 100644 --- a/src/Bridge/Library.cs +++ b/src/Bridge/Library.cs @@ -26,14 +26,10 @@ namespace Cxxi { public TranslationUnit(string file) { - ForwardReferences = new List(); Macros = new List(); FilePath = file; } - /// Forward reference declarations. - public List ForwardReferences; - /// Contains the macros present in the unit. public List Macros; @@ -62,6 +58,9 @@ namespace Cxxi /// Contains the include path. public string IncludePath; + + /// Type references object. + public object TypeReferences; } ///