Skip to content

Commit a83bb79

Browse files
committed
Fix switc/case fallthroughs
1 parent 8ef1e72 commit a83bb79

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/GraphQLResponse.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -985,6 +985,8 @@ std::partial_ordering Value::operator<=>(const Value& rhs) const noexcept
985985
return enumData <=> stringData.string;
986986
}
987987
}
988+
989+
break;
988990
}
989991

990992
case Type::ID:
@@ -1000,6 +1002,8 @@ std::partial_ordering Value::operator<=>(const Value& rhs) const noexcept
10001002
return idType <=> stringData.string;
10011003
}
10021004
}
1005+
1006+
break;
10031007
}
10041008

10051009
default:

0 commit comments

Comments
 (0)