Skip to content

Commit 4b5cc5e

Browse files
jgautier-anssifabienfl-orc
authored andcommitted
OrcLib: BinaryBuffer: add const qualifier to operator==
1 parent b63499a commit 4b5cc5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/OrcLib/BinaryBuffer.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ class CBinaryBuffer
288288
return (T*)((BYTE*)m_pData + m_size);
289289
};
290290

291-
bool operator==(const CBinaryBuffer& other)
291+
bool operator==(const CBinaryBuffer& other) const
292292
{
293293
if (GetCount() != other.GetCount())
294294
return false;

0 commit comments

Comments
 (0)