Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/SQLiteCpp/Column.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class Column
*
* Note this correctly handles strings that contain null bytes.
*/
std::string getString() const noexcept; // nothrow
std::string getString() const;

/**
* @brief Return the type of the value of the column
Expand Down
2 changes: 1 addition & 1 deletion include/SQLiteCpp/Database.h
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class Database
*
* @throw SQLite::Exception in case of error
*/
void setBusyTimeout(const int aBusyTimeoutMs) noexcept; // nothrow
void setBusyTimeout(const int aBusyTimeoutMs);

/**
* @brief Shortcut to execute one or multiple statements without results.
Expand Down
2 changes: 1 addition & 1 deletion src/Column.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const void* Column::getBlob() const noexcept // nothrow
}

// Return a std::string to a TEXT or BLOB column
std::string Column::getString() const noexcept // nothrow
std::string Column::getString() const
{
// Note: using sqlite3_column_blob and not sqlite3_column_text
// - no need for sqlite3_column_text to add a \0 on the end, as we're getting the bytes length directly
Expand Down
2 changes: 1 addition & 1 deletion src/Database.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ Database::~Database() noexcept // nothrow
*
* @throw SQLite::Exception in case of error
*/
void Database::setBusyTimeout(const int aBusyTimeoutMs) noexcept // nothrow
void Database::setBusyTimeout(const int aBusyTimeoutMs)
{
const int ret = sqlite3_busy_timeout(mpSQLite, aBusyTimeoutMs);
check(ret);
Expand Down