Add 'const' qualifier on member functions not changing its fields.
authorMichael Liao <michael.liao@intel.com>
Thu, 25 Oct 2012 18:35:04 +0000 (18:35 +0000)
committerMichael Liao <michael.liao@intel.com>
Thu, 25 Oct 2012 18:35:04 +0000 (18:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@166708 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/MC/MCELFObjectWriter.h

index 4ffea8de15efa3b7fcb9a698310396b248bcfa9e..38cdc7293ba01829a4632c0d3827596a00516a60 100644 (file)
@@ -96,9 +96,9 @@ public:
 
   /// @name Accessors
   /// @{
-  uint8_t getOSABI() { return OSABI; }
-  uint16_t getEMachine() { return EMachine; }
-  bool hasRelocationAddend() { return HasRelocationAddend; }
+  uint8_t getOSABI() const { return OSABI; }
+  uint16_t getEMachine() const { return EMachine; }
+  bool hasRelocationAddend() const { return HasRelocationAddend; }
   bool is64Bit() const { return Is64Bit; }
   bool isN64() const { return IsN64; }
   /// @}