summaryrefslogtreecommitdiff
path: root/port/port_stdcxx.h
diff options
context:
space:
mode:
authorVictor Costan <costan@google.com>2020-04-13 23:18:12 +0000
committerVictor Costan <costan@google.com>2020-04-14 01:10:05 +0000
commit201f52201f5dd9701e7a8ceaa0ec4d344e69e022 (patch)
treeb3b2fa7f9f9e3c6a3f744e72b003597e1d956ce1 /port/port_stdcxx.h
parentba369ddbaffcfe635dd620d1aa68473b56267065 (diff)
downloadleveldb-201f52201f5dd9701e7a8ceaa0ec4d344e69e022.tar.gz
Remove leveldb::port::kLittleEndian.
Clang 10 includes the optimizations described in https://bugs.llvm.org/show_bug.cgi?id=41761. This means that the platform-independent implementations of {Decode,Encode}Fixed{32,64}() compile to one instruction on the most recent Clang and GCC. PiperOrigin-RevId: 306330166
Diffstat (limited to 'port/port_stdcxx.h')
-rw-r--r--port/port_stdcxx.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/port/port_stdcxx.h b/port/port_stdcxx.h
index e9cb0e5..2bda48d 100644
--- a/port/port_stdcxx.h
+++ b/port/port_stdcxx.h
@@ -41,8 +41,6 @@
namespace leveldb {
namespace port {
-static const bool kLittleEndian = !LEVELDB_IS_BIG_ENDIAN;
-
class CondVar;
// Thinly wraps std::mutex.