mirror of
https://github.com/cuberite/SQLiteCpp.git
synced 2025-08-04 09:46:02 -04:00
Apply code style
This commit is contained in:
parent
bfd8bb2c63
commit
d04c8699d2
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user