Skip to content

Commit e5b0004

Browse files
Fix build
1 parent 8e9ecf6 commit e5b0004

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

ICSharpCode.Decompiler.Tests/TestCases/Pretty/QueryExpressions.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -236,17 +236,17 @@ public static IEnumerable<char> Issue1310a(bool test)
236236
{
237237
#if ROSLYN && OPT
238238
IEnumerable<char> obj = (test ? (from c in Enumerable.Range(0, 255)
239-
where char.IsLetter((char)c)
240-
select (char)c) : (from c in Enumerable.Range(0, 255)
241-
where char.IsDigit((char)c)
242-
select (char)c));
239+
where char.IsLetter((char)c)
240+
select (char)c) : (from c in Enumerable.Range(0, 255)
241+
where char.IsDigit((char)c)
242+
select (char)c));
243243
return obj.Concat(obj);
244244
#else
245245
IEnumerable<char> enumerable = (test ? (from c in Enumerable.Range(0, 255)
246-
where char.IsLetter((char)c)
247-
select (char)c) : (from c in Enumerable.Range(0, 255)
248-
where char.IsDigit((char)c)
249-
select (char)c));
246+
where char.IsLetter((char)c)
247+
select (char)c) : (from c in Enumerable.Range(0, 255)
248+
where char.IsDigit((char)c)
249+
select (char)c));
250250
return enumerable.Concat(enumerable);
251251
#endif
252252
}

0 commit comments

Comments
 (0)