Skip to content

Commit 7a9b56c

Browse files
committed
Fix const correctness
1 parent 9b305db commit 7a9b56c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/AttributeEncodeState.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class AttributeEncodeState
4040
/// other encoding state
4141
///
4242
/// if other is nullptr, this is the same as the default initializer.
43-
AttributeEncodeState(AttributeEncodeState * other)
43+
AttributeEncodeState(const AttributeEncodeState * other)
4444
{
4545
if (other != nullptr)
4646
{

0 commit comments

Comments
 (0)