From ac83733b590f3c0750bea1de3556ceb24fa0a4b1 Mon Sep 17 00:00:00 2001 From: jbzdarkid Date: Mon, 25 Nov 2019 21:10:50 -0800 Subject: Using PCH to clean up includes --- Source/Validator.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Source/Validator.cpp') diff --git a/Source/Validator.cpp b/Source/Validator.cpp index e71dc34..cb0ffa8 100644 --- a/Source/Validator.cpp +++ b/Source/Validator.cpp @@ -1,3 +1,4 @@ +#include "pch.h" #include "Validator.h" #include "Puzzle.h" @@ -10,7 +11,7 @@ void Validator::Validate(Puzzle& p) { bool puzzleHasSymbols = false; bool puzzleHasStart = false; bool puzzleHasEnd = false; - // Validate gap failures as an early exit. + // Validate gap failures as an early exit. for (int x = 0; x < p.width; x++) { for (int y = 0; y < p.height; y++) { Cell cell = p.grid[x][y]; -- cgit 1.4.1