mirror of https://github.com/stella-emu/stella.git
Yet more formatting issues I forgot in the last commit.
This commit is contained in:
parent
b072a5d9f8
commit
cdf62286ec
|
@ -62,7 +62,7 @@ class SqliteDatabase
|
|||
// IMPLEMENTATION
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifdef __clang__
|
||||
#if defined(__clang__)
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Wformat-nonliteral"
|
||||
#endif
|
||||
|
@ -78,7 +78,7 @@ void SqliteDatabase::exec(const string& sql, T arg1, Ts... args)
|
|||
exec(buffer);
|
||||
}
|
||||
|
||||
#ifdef __clang__
|
||||
#if defined(__clang__)
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
|
||||
|
|
|
@ -68,7 +68,7 @@ class SqliteStatement {
|
|||
// IMPLEMENTATION
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifdef __clang__
|
||||
#if defined(__clang__)
|
||||
#pragma clang diagnostic push
|
||||
#pragma clang diagnostic ignored "-Wformat-nonliteral"
|
||||
#endif
|
||||
|
@ -85,7 +85,7 @@ SqliteStatement::SqliteStatement(sqlite3* handle, const string& sql, T arg1, Ts.
|
|||
initialize(buffer);
|
||||
}
|
||||
|
||||
#ifdef __clang__
|
||||
#if defined(__clang__)
|
||||
#pragma clang diagnostic pop
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue