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

@@ -5,12 +5,12 @@
// A portable implementation of crc32c, optimized to handle
// four bytes at a time.
#include "util/crc32c.h"
#include "crc32c.h"
#include <stdint.h>
#include "util/coding.h"
#include "coding.h"
namespace leveldb {
namespace hyperleveldb {
namespace crc32c {
static const uint32_t table0_[256] = {
@@ -329,4 +329,4 @@ uint32_t Extend(uint32_t crc, const char* buf, size_t size) {
}
} // namespace crc32c
} // namespace leveldb
} // namespace hyperleveldb