Apply code style

This commit is contained in:
Sébastien Rombauts 2016-08-05 07:56:20 +02:00
parent bfd8bb2c63
commit d04c8699d2

View File

@ -76,12 +76,14 @@ public:
Exception(sqlite3* apSQLite, int ret); Exception(sqlite3* apSQLite, int ret);
/// Return the result code (if any, otherwise -1). /// Return the result code (if any, otherwise -1).
int getErrorCode() const noexcept { // nothrow inline int getErrorCode() const noexcept // nothrow
{
return mErrcode; return mErrcode;
} }
/// Return the extended numeric result code (if any, otherwise -1). /// Return the extended numeric result code (if any, otherwise -1).
int getExtendedErrorCode() const noexcept { // nothrow inline int getExtendedErrorCode() const noexcept // nothrow
{
return mExtendedErrcode; return mExtendedErrcode;
} }