Browse Source

HPCC-14700 Fix coverity and windows warnings

Signed-off-by: Gavin Halliday <gavin.halliday@lexisnexis.com>
Gavin Halliday 8 years ago
parent
commit
34fbc2bd43
1 changed files with 2 additions and 2 deletions
  1. 2 2
      rtl/eclrtl/rtlrecord.hpp

+ 2 - 2
rtl/eclrtl/rtlrecord.hpp

@@ -69,7 +69,7 @@ protected:
     const RtlFieldInfo * const * originalFields;
 };
 
-struct ECLRTL_API RtlRow
+class ECLRTL_API RtlRow
 {
 public:
     RtlRow(const RtlRecord & _info, const void * optRow, unsigned numOffsets, size_t * _variableOffsets);
@@ -127,7 +127,7 @@ public:
         return offsetCalculator.getRecordSize();
     }
 
-    virtual size32_t getFixedSize()
+    virtual size32_t getFixedSize() const
     {
         return offsetInformation.getFixedSize();
     }