Make includes relative, change namespace, support unity build

This commit is contained in:
Vinnie Falco
2013-07-15 06:46:10 -07:00
parent 613ed36e9b
commit af552c5b56
117 changed files with 784 additions and 784 deletions

View File

@@ -4,13 +4,13 @@
#include "hyperleveldb/db.h"
#include "db/memtable.h"
#include "db/write_batch_internal.h"
#include "hyperleveldb/env.h"
#include "util/logging.h"
#include "util/testharness.h"
#include "memtable.h"
#include "write_batch_internal.h"
#include "../hyperleveldb/env.h"
#include "../util/logging.h"
#include "../util/testharness.h"
namespace leveldb {
namespace hyperleveldb {
static std::string PrintContents(WriteBatch* b) {
InternalKeyComparator cmp(BytewiseComparator());
@@ -113,7 +113,7 @@ TEST(WriteBatchTest, Append) {
PrintContents(&b1));
}
} // namespace leveldb
} // namespace hyperleveldb
int main(int argc, char** argv) {
return leveldb::test::RunAllTests();