Ran code maid against this code.

This commit is contained in:
Lars Brubaker 2015-04-08 15:20:10 -07:00
parent 1445945d9c
commit 591528ee91
309 changed files with 139399 additions and 140129 deletions

View file

@ -7,16 +7,18 @@
**
*************************************************************************
*/
namespace Community.CsharpSqlite
{
public partial class Sqlite3
{
/* Automatically generated. Do not edit */
/* See the mkopcodec.awk script for details. */
public partial class Sqlite3
{
/* Automatically generated. Do not edit */
/* See the mkopcodec.awk script for details. */
#if !SQLITE_OMIT_EXPLAIN || !NDEBUG || VDBE_PROFILE || SQLITE_DEBUG
static string sqlite3OpcodeName( int i )
{
string[] azName = { "?",
private static string sqlite3OpcodeName(int i)
{
string[] azName = { "?",
/* 1 */ "Goto",
/* 2 */ "Gosub",
/* 3 */ "Return",
@ -163,8 +165,9 @@ namespace Community.CsharpSqlite
/* 144 */ "ToInt",
/* 145 */ "ToReal",
};
return azName[i];
}
return azName[i];
}
#endif
}
}
}
}