From 597dd4c9600166df9c6be2a0c3e83115f7ba9d6d Mon Sep 17 00:00:00 2001 From: triton Date: Wed, 6 Mar 2013 03:56:31 +0000 Subject: [PATCH] Renamed IgnoreModulessWithName to IgnoreHeadersWithName to better reflect what it does. --- src/Generator/Library.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Generator/Library.cs b/src/Generator/Library.cs index 131d244c..3d98c24a 100644 --- a/src/Generator/Library.cs +++ b/src/Generator/Library.cs @@ -269,7 +269,7 @@ namespace Cxxi #region Module Helpers - public static void IgnoreModulessWithName(this Library library, string pattern) + public static void IgnoreHeadersWithName(this Library library, string pattern) { var modules = library.TranslationUnits.FindAll( m => Regex.Match(m.FilePath, pattern).Success);