From ccdd4e9d4dd5e10c5e7970e3e611be2951bc9b70 Mon Sep 17 00:00:00 2001 From: Benjamin Michaelis Date: Tue, 4 Mar 2025 17:18:34 -0800 Subject: [PATCH] fix: Add line numbers to 4.62 --- src/Chapter04/Listing04.62.LineWarning.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/Chapter04/Listing04.62.LineWarning.cs b/src/Chapter04/Listing04.62.LineWarning.cs index 1edd43974..4f830eddd 100644 --- a/src/Chapter04/Listing04.62.LineWarning.cs +++ b/src/Chapter04/Listing04.62.LineWarning.cs @@ -4,10 +4,16 @@ public class Program { public static void Main() { - #region INCLUDE #line 113 "TicTacToe.cs" #warning "Same move allowed multiple times." #line default + // Duplicating content to add line numbers + /* + #region INCLUDE + 124. #line 113 "TicTacToe.cs" + 125. #warning "Same move allowed multiple times." + 126. #line default #endregion INCLUDE + */ } }