From 4f413ef7fecf41ce9c2913e364718c0d03bde678 Mon Sep 17 00:00:00 2001 From: Nicolas Noble Date: Fri, 16 May 2014 11:31:29 -0700 Subject: Fixing compilation problem with well known all-caps symbols. --- includes/Handle.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'includes/Handle.h') diff --git a/includes/Handle.h b/includes/Handle.h index 91ded2b..40e52e5 100644 --- a/includes/Handle.h +++ b/includes/Handle.h @@ -65,12 +65,12 @@ class Handle { virtual bool isPendingComplete() { return true; } enum Endianness { - LITTLE_ENDIAN, - BIG_ENDIAN, + BALAU_LITTLE_ENDIAN, + BALAU_BIG_ENDIAN, }; - void setEndianness(Endianness endianness) { m_bigEndianMode = endianness == BIG_ENDIAN; } - Endianness getEndianness() { return m_bigEndianMode ? BIG_ENDIAN : LITTLE_ENDIAN; } + void setEndianness(Endianness endianness) { m_bigEndianMode = endianness == BALAU_BIG_ENDIAN; } + Endianness getEndianness() { return m_bigEndianMode ? BALAU_BIG_ENDIAN : BALAU_LITTLE_ENDIAN; } // helpers off64_t tell() { return rtell(); } -- cgit v1.2.3