* EnumProcessor.cs:
* FuncProcessor.cs: Corrected the XPath for signature overrides.
This commit is contained in:
parent
54f940a82a
commit
4c8ab01b01
2 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@ namespace Bind
|
|||
{
|
||||
class EnumProcessor
|
||||
{
|
||||
const string Path = "/overrides/replace/enum[@name='{0}']";
|
||||
const string Path = "/signatures/replace/enum[@name='{0}']";
|
||||
XPathDocument Overrides { get; set; }
|
||||
|
||||
public EnumProcessor(XPathDocument overrides)
|
||||
|
|
|
@ -38,7 +38,7 @@ namespace Bind
|
|||
{
|
||||
class FuncProcessor
|
||||
{
|
||||
const string Path = "/overrides/replace/function[@name='{0}' and @extension='{1}']";
|
||||
const string Path = "/signatures/replace/function[@name='{0}' and @extension='{1}']";
|
||||
static readonly Regex Endings =
|
||||
new Regex(@"((((d|f|fi)|u?[isb])_?v?)|v)", RegexOptions.Compiled | RegexOptions.RightToLeft);
|
||||
static readonly Regex EndingsNotToTrim =
|
||||
|
|
Loading…
Reference in a new issue