remove extra namespace

This commit is contained in:
yggverse 2024-09-11 02:10:56 +03:00
parent b840dae964
commit 7ca8ce0157
4 changed files with 5 additions and 5 deletions

View file

@ -67,7 +67,7 @@ int Tab::restore()
{
close_all();
while (::sqlite3_step(statement) == SQLITE_ROW)
while (sqlite3_step(statement) == SQLITE_ROW)
{
const int PAGE_NUMBER = append(
reinterpret_cast<const char*>(
@ -375,7 +375,7 @@ int Tab::DB::SESSION::clean(
if (PREPARE_STATUS == SQLITE_OK)
{
while (::sqlite3_step(statement) == SQLITE_ROW)
while (sqlite3_step(statement) == SQLITE_ROW)
{
const int APP_BROWSER_MAIN_TAB__SESSION_ID = sqlite3_column_int(
statement,