Skip to content

Commit df70c88

Browse files
committed
tidy vestigial variable
1 parent eadb758 commit df70c88

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/SQLiteNestedVFS.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1146,7 +1146,7 @@ class VFS : public SQLiteVFS::Wrapper {
11461146
// subclass may override inner_db_tablename_prefix_ with something encoding-specific, to
11471147
// prevent confusion between different nested VFS encodings
11481148
std::string inner_db_tablename_prefix_ = "inner_vfs_";
1149-
std::string inner_db_filename_suffix_ = "-inner", outer_vfs_, last_error_;
1149+
std::string inner_db_filename_suffix_ = "-inner", last_error_;
11501150

11511151
size_t szOsFile() override {
11521152
return std::max(SQLiteVFS::Wrapper::szOsFile(), (size_t)wrapped_->szOsFile);
@@ -1219,7 +1219,7 @@ class VFS : public SQLiteVFS::Wrapper {
12191219
}
12201220
}
12211221

1222-
std::string vfs = outer_vfs_;
1222+
std::string vfs;
12231223
std::string outer_db_uri = "file:" + urlencode(outer_db_filename, true);
12241224
bool unsafe = sqlite3_uri_boolean(zName, "outer_unsafe", 0);
12251225
if (web) {

0 commit comments

Comments
 (0)