From a4e007bfc1264ad5b05d9cb13c13b2338837c30c Mon Sep 17 00:00:00 2001 From: triton Date: Wed, 6 Feb 2013 17:31:23 +0000 Subject: [PATCH] Rename the Native field in Library to make it clear it refers to the shared library name. --- src/Bridge/Library.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Bridge/Library.cs b/src/Bridge/Library.cs index f96b6b9b..584ca7b7 100644 --- a/src/Bridge/Library.cs +++ b/src/Bridge/Library.cs @@ -64,13 +64,13 @@ namespace Cxxi public class Library { public string Name; - public string Native; + public string SharedLibrary; public List TranslationUnits; - public Library(string name, string native) + public Library(string name, string sharedLibrary) { Name = name; - Native = native; + SharedLibrary = sharedLibrary; TranslationUnits = new List(); }