options.cc 429 B

1234567891011121314
  1. // Copyright (c) 2011 The LevelDB Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file. See the AUTHORS file for names of contributors.
  4. #include "leveldb/options.h"
  5. #include "leveldb/comparator.h"
  6. #include "leveldb/env.h"
  7. namespace leveldb {
  8. Options::Options() : comparator(BytewiseComparator()), env(Env::Default()) {}
  9. } // namespace leveldb