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,10 +4,10 @@
#include <math.h>
#include <stdio.h>
#include "port/port.h"
#include "util/histogram.h"
#include "../port/port.h"
#include "histogram.h"
namespace leveldb {
namespace hyperleveldb {
const double Histogram::kBucketLimit[kNumBuckets] = {
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 16, 18, 20, 25, 30, 35, 40, 45,
@@ -136,4 +136,4 @@ std::string Histogram::ToString() const {
return r;
}
} // namespace leveldb
} // namespace hyperleveldb