mirror of
https://github.com/corda/corda.git
synced 2025-06-16 06:08:13 +00:00
remove powerpc support
This commit is contained in:
@ -114,7 +114,6 @@ public:
|
||||
enum Architecture {
|
||||
x86 = AVIAN_ARCH_X86,
|
||||
x86_64 = AVIAN_ARCH_X86_64,
|
||||
PowerPC = AVIAN_ARCH_POWERPC,
|
||||
Arm = AVIAN_ARCH_ARM,
|
||||
UnknownArch = AVIAN_ARCH_UNKNOWN
|
||||
};
|
||||
@ -132,10 +131,6 @@ public:
|
||||
inline bool operator == (const PlatformInfo& other) {
|
||||
return format == other.format && arch == other.arch;
|
||||
}
|
||||
|
||||
inline bool isLittleEndian() {
|
||||
return arch != PowerPC;
|
||||
}
|
||||
};
|
||||
|
||||
class Platform {
|
||||
|
Reference in New Issue
Block a user