We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e9d926 commit d32045bCopy full SHA for d32045b
Prometheus/StringSequence.cs
@@ -119,7 +119,7 @@ public override bool Equals(object? obj)
119
120
// There are various ways we can make a StringSequence, comining one or two parents and maybe adding some extra to the start.
121
// This ctor tries to account for all these options.
122
- private StringSequence(StringSequence inheritFrom, StringSequence thenFrom, ReadOnlyMemory<string> andFinallyPrepend)
+ private StringSequence(in StringSequence inheritFrom, in StringSequence thenFrom, in ReadOnlyMemory<string> andFinallyPrepend)
123
{
124
// Simplify construction if we just need to match one of the cloneable inputs.
125
if (!inheritFrom.IsEmpty && thenFrom.IsEmpty && andFinallyPrepend.Length == 0)
0 commit comments