blob: d0696e087fe70fdf346a83bfd32d86d39babd075 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "formatempty.h"
#include "common/unused.h"
FormatEmpty::FormatEmpty(SqliteEmptyQuery* eq)
{
UNUSED(eq);
}
void FormatEmpty::formatInternal()
{
withSemicolon();
}
|