Bläddra i källkod

Make table cache non-copyable

main
ehds 3 år sedan
förälder
incheckning
dbf24d9a0c
1 ändrade filer med 4 tillägg och 0 borttagningar
  1. +4
    -0
      db/table_cache.h

+ 4
- 0
db/table_cache.h Visa fil

@ -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

Laddar…
Avbryt
Spara