From b2b01c2e6ac295f1603e6e8e7c88c3fbe8fefeeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ko=CC=88hler?= Date: Fri, 30 Aug 2024 17:23:59 +0200 Subject: [PATCH] Fix compile warning due to case mismatch for STDAFX.h --- LUDecomp.cpp | 2 +- Mtx.cpp | 2 +- Vect.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/LUDecomp.cpp b/LUDecomp.cpp index aa85827..189380c 100644 --- a/LUDecomp.cpp +++ b/LUDecomp.cpp @@ -27,7 +27,7 @@ // matrix LU decomposition class // -#include "stdafx.h" +#include "STDAFX.H" #include diff --git a/Mtx.cpp b/Mtx.cpp index 31f566c..cadd7b0 100644 --- a/Mtx.cpp +++ b/Mtx.cpp @@ -27,7 +27,7 @@ // basic numerical matrix class // -#include "stdafx.h" +#include "STDAFX.H" #include "Mtx.h" diff --git a/Vect.cpp b/Vect.cpp index 5401f5c..023f403 100644 --- a/Vect.cpp +++ b/Vect.cpp @@ -27,9 +27,9 @@ // basic numerical vector class // -#include "stdafx.h" #include "Vect.h" +#include "STDAFX.H" using namespace std;