.cosmetics

git-svn-id: svn://ultimatepp.org/upp/trunk@11132 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2017-06-01 17:42:29 +00:00
parent b4c9a5b59a
commit 5cdc6f7d1c
2 changed files with 11 additions and 12 deletions

View file

@ -450,16 +450,4 @@ SqlCode::SqlCode(byte cond, const String& text) {
s << (char)SQLC_IF << (char)cond << text;
}
// Put to different file to force non-inline (size opt)
void SqlId::PutOf0(String& s, const SqlId& b) const
{
s << ToString() << (char)SQLC_OF << ~b;
}
void SqlId::PutOf(String& s, const SqlId& b) const
{
s << (char)SQLC_COMMA;
PutOf0(s, b);
}
}