Browse Source

Fix last commit

git-svn-id: https://leveldb.googlecode.com/svn/trunk@19 62dab493-f737-651d-591e-8d6aee1b9529
main
jorlow@chromium.org 13 years ago
parent
commit
9e33808a26
22 changed files with 1282 additions and 1282 deletions
  1. +1
    -1
      include/leveldb/cache.h
  2. +0
    -0
      include/leveldb/comparator.h
  3. +2
    -2
      include/leveldb/db.h
  4. +1
    -1
      include/leveldb/env.h
  5. +2
    -2
      include/leveldb/iterator.h
  6. +0
    -0
      include/leveldb/options.h
  7. +0
    -0
      include/leveldb/slice.h
  8. +1
    -1
      include/leveldb/status.h
  9. +1
    -1
      include/leveldb/table.h
  10. +2
    -2
      include/leveldb/table_builder.h
  11. +0
    -0
      include/leveldb/write_batch.h

include/cache.h → include/leveldb/cache.h View File

@ -19,7 +19,7 @@
#define STORAGE_LEVELDB_INCLUDE_CACHE_H_ #define STORAGE_LEVELDB_INCLUDE_CACHE_H_
#include <stdint.h> #include <stdint.h>
#include "include/slice.h"
#include "leveldb/slice.h"
namespace leveldb { namespace leveldb {

include/comparator.h → include/leveldb/comparator.h View File


include/db.h → include/leveldb/db.h View File

@ -7,8 +7,8 @@
#include <stdint.h> #include <stdint.h>
#include <stdio.h> #include <stdio.h>
#include "include/iterator.h"
#include "include/options.h"
#include "leveldb/iterator.h"
#include "leveldb/options.h"
namespace leveldb { namespace leveldb {

include/env.h → include/leveldb/env.h View File

@ -14,7 +14,7 @@
#include <string> #include <string>
#include <vector> #include <vector>
#include <stdint.h> #include <stdint.h>
#include "include/status.h"
#include "leveldb/status.h"
namespace leveldb { namespace leveldb {

include/iterator.h → include/leveldb/iterator.h View File

@ -10,8 +10,8 @@
#ifndef STORAGE_LEVELDB_INCLUDE_ITERATOR_H_ #ifndef STORAGE_LEVELDB_INCLUDE_ITERATOR_H_
#define STORAGE_LEVELDB_INCLUDE_ITERATOR_H_ #define STORAGE_LEVELDB_INCLUDE_ITERATOR_H_
#include "include/slice.h"
#include "include/status.h"
#include "leveldb/slice.h"
#include "leveldb/status.h"
namespace leveldb { namespace leveldb {

include/options.h → include/leveldb/options.h View File


include/slice.h → include/leveldb/slice.h View File


include/status.h → include/leveldb/status.h View File

@ -10,7 +10,7 @@
#include <string> #include <string>
#include <utility> #include <utility>
#include "include/slice.h"
#include "leveldb/slice.h"
namespace leveldb { namespace leveldb {

include/table.h → include/leveldb/table.h View File

@ -6,7 +6,7 @@
#define STORAGE_LEVELDB_INCLUDE_TABLE_H_ #define STORAGE_LEVELDB_INCLUDE_TABLE_H_
#include <stdint.h> #include <stdint.h>
#include "include/iterator.h"
#include "leveldb/iterator.h"
namespace leveldb { namespace leveldb {

include/table_builder.h → include/leveldb/table_builder.h View File

@ -9,8 +9,8 @@
#define STORAGE_LEVELDB_INCLUDE_TABLE_BUILDER_H_ #define STORAGE_LEVELDB_INCLUDE_TABLE_BUILDER_H_
#include <stdint.h> #include <stdint.h>
#include "include/options.h"
#include "include/status.h"
#include "leveldb/options.h"
#include "leveldb/status.h"
namespace leveldb { namespace leveldb {

include/write_batch.h → include/leveldb/write_batch.h View File


Loading…
Cancel
Save