Add const.

llvm-svn: 147054
This commit is contained in:
Rafael Espindola 2011-12-21 14:48:04 +00:00
parent 9e252bf038
commit 46f0c15208
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ public:
Triple::OSType getOSType() { return OSType; } Triple::OSType getOSType() { return OSType; }
uint16_t getEMachine() { return EMachine; } uint16_t getEMachine() { return EMachine; }
bool hasRelocationAddend() { return HasRelocationAddend; } bool hasRelocationAddend() { return HasRelocationAddend; }
bool is64Bit() { return Is64Bit; } bool is64Bit() const { return Is64Bit; }
/// @} /// @}
}; };