Skip to content

Commit 7303f87

Browse files
committed
[C++]: cleaning up some ignored qualifiers for clang.
1 parent 37e75a0 commit 7303f87

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

sbe-tool/src/main/cpp/otf/Encoding.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -414,17 +414,17 @@ class Encoding
414414
}
415415
}
416416

417-
inline const Presence presence() const
417+
inline Presence presence() const
418418
{
419419
return m_presence;
420420
}
421421

422-
inline const ByteOrder byteOrder() const
422+
inline ByteOrder byteOrder() const
423423
{
424424
return m_byteOrder;
425425
}
426426

427-
inline const PrimitiveType primitiveType() const
427+
inline PrimitiveType primitiveType() const
428428
{
429429
return m_primitiveType;
430430
}

sbe-tool/src/main/cpp/otf/Token.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class Token
9292
{
9393
}
9494

95-
inline const Signal signal() const
95+
inline Signal signal() const
9696
{
9797
return m_signal;
9898
}

0 commit comments

Comments
 (0)