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.
2 parents d82524e + ec414bd commit e8eb04bCopy full SHA for e8eb04b
src/Compilers/Core/Portable/MetadataReader/PEModule.cs
@@ -2338,19 +2338,6 @@ private static bool CrackBoolAndStringInAttributeValue(out BoolAndStringData val
2338
return false;
2339
}
2340
2341
- private static bool CrackBoolAndBoolInAttributeValue(out (bool, bool) value, ref BlobReader sig)
2342
- {
2343
- if (CrackBooleanInAttributeValue(out bool item1, ref sig) &&
2344
- CrackBooleanInAttributeValue(out bool item2, ref sig))
2345
2346
- value = (item1, item2);
2347
- return true;
2348
- }
2349
-
2350
- value = default;
2351
- return false;
2352
2353
2354
private static bool CrackBooleanInAttributeValue(out bool value, ref BlobReader sig)
2355
{
2356
if (sig.RemainingBytes >= 1)
0 commit comments