Procházet zdrojové kódy

Make table cache non-copyable

main
ehds před 3 roky
rodič
revize
dbf24d9a0c
1 změnil soubory, kde provedl 4 přidání a 0 odebrání
  1. +4
    -0
      db/table_cache.h

+ 4
- 0
db/table_cache.h Zobrazit soubor

@ -22,6 +22,10 @@ class Env;
class TableCache {
public:
TableCache(const std::string& dbname, const Options& options, int entries);
TableCache(const TableCache&) = delete;
TableCache& operator=(const TableCache&) = delete;
~TableCache();
// Return an iterator for the specified file number (the corresponding

Načítá se…
Zrušit
Uložit