mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 19:15:36 +00:00
Removed stale debugging code.
This commit is contained in:
parent
d72a75f2fc
commit
8ffb395f95
|
@ -210,12 +210,6 @@ namespace CHeaderToXML
|
|||
// where [parameter name] can either be inside comments (/* ... */) or not.
|
||||
var get_param = new Regex(@"(\w+\s\(\*\w+\)\s*\(.*\)\s*(/\*.*?\*/|\w+)? | (const\s)?\w+\s*\**\s*(/\*.*?\*/|\w+(\[.*?\])?)),?", RegexOptions.IgnorePatternWhitespace);
|
||||
|
||||
#if true
|
||||
if (funcname == "EnqueueNativeKernel")
|
||||
Debugger.Break();
|
||||
var ars = get_param.Matches(paramaters_string).OfType<Match>().Select(m => m.Captures[0].Value.TrimEnd(','));
|
||||
#endif
|
||||
|
||||
var fun =
|
||||
new
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue