Merge pull request #150 from Chilledheart/master

Fix errors while building with clang (against libc++) under linux
This commit is contained in:
Igor Canadi 2014-05-15 00:20:34 -07:00
commit 2ca7a9886d
3 changed files with 3 additions and 0 deletions

View File

@ -4,6 +4,7 @@
// of patent rights can be found in the PATENTS file in the same directory. // of patent rights can be found in the PATENTS file in the same directory.
#include <cstdio> #include <cstdio>
#include <cstdlib>
#include <vector> #include <vector>
#include <memory> #include <memory>

View File

@ -13,6 +13,7 @@
#pragma once #pragma once
#include <cstddef> #include <cstddef>
#include <cerrno>
#include <vector> #include <vector>
#include <assert.h> #include <assert.h>
#include <stdint.h> #include <stdint.h>

View File

@ -8,6 +8,7 @@
#include "rocksdb/env.h" #include "rocksdb/env.h"
#include "util/arena.h" #include "util/arena.h"
#include "util/autovector.h" #include "util/autovector.h"
#include <ctime>
namespace rocksdb { namespace rocksdb {