Skip to content

Commit fe659d6

Browse files
knopers8ktf
authored andcommitted
Fix constness of Output operator==
1 parent d67b00d commit fe659d6

File tree

1 file changed

+1
-1
lines changed
  • Framework/Core/include/Framework

1 file changed

+1
-1
lines changed

Framework/Core/include/Framework/Output.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ struct Output {
5959
{
6060
}
6161

62-
bool operator==(const Output& that)
62+
bool operator==(const Output& that) const
6363
{
6464
return origin == that.origin && description == that.description && subSpec == that.subSpec &&
6565
lifetime == that.lifetime;

0 commit comments

Comments
 (0)