summaryrefslogtreecommitdiff
path: root/src/plugins/projectexplorer/abi.h
diff options
context:
space:
mode:
authorTobias Hunger <tobias.hunger@digia.com>2014-07-22 16:32:57 +0200
committerTobias Hunger <tobias.hunger@digia.com>2014-07-24 10:28:07 +0200
commit089e6901086fed09404b9b22be9a56eed7f7bbdf (patch)
tree183fe79f42dd1a4f9dcf1812f92cdeba20390436 /src/plugins/projectexplorer/abi.h
parent75ff5062d686d6a19ba4fcab35aabc8417dc1265 (diff)
downloadqt-creator-089e6901086fed09404b9b22be9a56eed7f7bbdf.tar.gz
Abi: Remove endianness from ABI
The functionality is not implemented properly, remove it before someone thinks it was. Change-Id: I6e9c423a6b84a4a5fcf4d817e14df97fbdc901c5 Reviewed-by: Jake Petroules <jake.petroules@petroules.com> Reviewed-by: Tim Sander <tim@krieglstein.org> Reviewed-by: Christian Kandeler <christian.kandeler@digia.com> Reviewed-by: Eike Ziller <eike.ziller@digia.com>
Diffstat (limited to 'src/plugins/projectexplorer/abi.h')
-rw-r--r--src/plugins/projectexplorer/abi.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/plugins/projectexplorer/abi.h b/src/plugins/projectexplorer/abi.h
index 6b4c090b0e..8b674c759c 100644
--- a/src/plugins/projectexplorer/abi.h
+++ b/src/plugins/projectexplorer/abi.h
@@ -101,12 +101,6 @@ public:
UnknownFormat
};
- enum Endianness {
- LittleEndian,
- BigEndian,
- UnknownEndian
- };
-
Abi() :
m_architecture(UnknownArchitecture), m_os(UnknownOS),
m_osFlavor(UnknownFlavor), m_binaryFormat(UnknownFormat), m_wordWidth(0)
@@ -126,7 +120,6 @@ public:
bool isNull() const;
Architecture architecture() const { return m_architecture; }
- Endianness endianness() const;
OS os() const { return m_os; }
OSFlavor osFlavor() const { return m_osFlavor; }
BinaryFormat binaryFormat() const { return m_binaryFormat; }