summaryrefslogtreecommitdiff
path: root/port/port_posix.h
diff options
context:
space:
mode:
authordgrogan@chromium.org <dgrogan@chromium.org@62dab493-f737-651d-591e-8d6aee1b9529>2011-04-20 22:48:11 +0000
committerdgrogan@chromium.org <dgrogan@chromium.org@62dab493-f737-651d-591e-8d6aee1b9529>2011-04-20 22:48:11 +0000
commitba6dac0e809b249532a7465f71a00ccda307161d (patch)
tree9aa494c1bb1bbbefba5bf12c520941dbe4abfec1 /port/port_posix.h
parent69c6d38342a1fab5f7f2921aa2e9c0e60ba90e35 (diff)
downloadleveldb-ba6dac0e809b249532a7465f71a00ccda307161d.tar.gz
@20776309
* env_chromium.cc should not export symbols. * Fix MSVC warnings. * Removed large value support. * Fix broken reference to documentation file git-svn-id: https://leveldb.googlecode.com/svn/trunk@24 62dab493-f737-651d-591e-8d6aee1b9529
Diffstat (limited to 'port/port_posix.h')
-rw-r--r--port/port_posix.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/port/port_posix.h b/port/port_posix.h
index 7adbc01..c158db1 100644
--- a/port/port_posix.h
+++ b/port/port_posix.h
@@ -13,7 +13,6 @@
#include <string>
#include <cstdatomic>
#include <cstring>
-#include "port/sha1_portable.h"
namespace leveldb {
namespace port {
@@ -73,10 +72,6 @@ class AtomicPointer {
}
};
-inline void SHA1_Hash(const char* data, size_t len, char* hash_array) {
- SHA1_Hash_Portable(data, len, hash_array);
-}
-
// TODO(gabor): Implement actual compress
inline bool Snappy_Compress(const char* input, size_t input_length,
std::string* output) {