From 6a3b915166fce75aaf9ac209114a3ad9caa34171 Mon Sep 17 00:00:00 2001 From: costan Date: Tue, 10 Apr 2018 16:12:14 -0700 Subject: [PATCH] Remove PLATFORM_IS_LITTLE_ENDIAN from port/posix.h. This is an accidental leftover from the CMake migration. The macro has been replaced with LEVELDB_IS_BIG_ENDIAN. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=192364918 --- port/port_posix.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/port/port_posix.h b/port/port_posix.h index 2fb2269..54b07b6 100644 --- a/port/port_posix.h +++ b/port/port_posix.h @@ -36,10 +36,6 @@ #include "port/atomic_pointer.h" #include "port/thread_annotations.h" -#ifndef PLATFORM_IS_LITTLE_ENDIAN -#define PLATFORM_IS_LITTLE_ENDIAN (__BYTE_ORDER == __LITTLE_ENDIAN) -#endif - #if !HAVE_FDATASYNC #define fdatasync fsync #endif // !HAVE_FDATASYNC