Skip to content
This repository was archived by the owner on Dec 12, 2020. It is now read-only.

Commit 24f9d78

Browse files
author
Patrick Kranz
committed
Fix build error
1 parent 918039e commit 24f9d78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CodeGeneration.Roslyn/Logger.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public static void Log(LogLevel logLevel, string message)
3737
Print(message.Substring(begin, end - begin));
3838
begin = end + (foundR ? 2 : 1);
3939
end = message.IndexOf('\n', begin);
40-
bool foundR = end > 0 && message[end - 1] == '\r';
40+
foundR = end > 0 && message[end - 1] == '\r';
4141
if(foundR)
4242
end--;
4343
}

0 commit comments

Comments
 (0)