[build] fix for GCC 15 two-phase lookup

* GCC 15 is more aggressive about checking dependent names

Bug: https://bugs.gentoo.org/936409
pull/1285/head
David Seifert 3 months ago
parent 655b3c3f5d
commit ce97375280
No known key found for this signature in database
GPG Key ID: CE36E117202E3842

@ -582,7 +582,7 @@ struct vtab_module : public vtab_module_base {
struct vtab {
explicit vtab(sqlite3* db, T& impl) : v_db(db), v_impl(impl) {}
explicit operator sqlite3_vtab*() { return &this->base; }
explicit operator sqlite3_vtab*() { return &this->v_base; }
sqlite3_vtab v_base{};
sqlite3* v_db;

Loading…
Cancel
Save