From d11c5e306a3e48d0237b8ee2dae1872f310a0180 Mon Sep 17 00:00:00 2001 From: Patric Stout Date: Tue, 11 Aug 2026 22:24:04 +0200 Subject: [PATCH] Fix casing of includes for case-sensitive systems --- BlockAllocator.cpp | 2 +- ColumnDescriptor.cpp | 2 +- DelayedException.cpp | 4 ++-- NSession.cpp | 2 +- NSession.h | 2 +- RowDescriptor.cpp | 2 +- SessionPool.cpp | 2 +- SqlCommand.cpp | 2 +- SqlCommand.h | 2 +- StdAfx.cpp | 2 +- StringStore.cpp | 2 +- TmpRowset.h | 2 +- 12 files changed, 13 insertions(+), 13 deletions(-) diff --git a/BlockAllocator.cpp b/BlockAllocator.cpp index ee67310..346b711 100644 --- a/BlockAllocator.cpp +++ b/BlockAllocator.cpp @@ -17,7 +17,7 @@ ************************************************************************* */ -#include "stdafx.h" +#include "StdAfx.h" #include "BlockAllocator.h" //Block allocator members diff --git a/ColumnDescriptor.cpp b/ColumnDescriptor.cpp index dd33418..4b430da 100644 --- a/ColumnDescriptor.cpp +++ b/ColumnDescriptor.cpp @@ -1,7 +1,7 @@ // Copyright © 2023 CCP ehf. #include "ColumnDescriptor.h" -#include "utils.h" +#include "Utils.h" #include diff --git a/DelayedException.cpp b/DelayedException.cpp index da5a78a..4875884 100644 --- a/DelayedException.cpp +++ b/DelayedException.cpp @@ -1,7 +1,7 @@ // Copyright © 2014 CCP ehf. -#include "stdafx.h" +#include "StdAfx.h" #include "DelayedException.h" -#include "utils.h" +#include "Utils.h" DelayedException::DelayedException(const char *msg, HRESULT hr, PyObject *cls) : diff --git a/NSession.cpp b/NSession.cpp index 86c054a..a6a5cf7 100644 --- a/NSession.cpp +++ b/NSession.cpp @@ -3,7 +3,7 @@ #include "NSession.h" #include -#include "utils.h" +#include "Utils.h" using Utilities::DbExc_RuntimeError; static CcpLogChannel_t s_chNSession = CCP_LOG_DEFINE_CHANNEL( "NSession" ); diff --git a/NSession.h b/NSession.h index 01197a0..a49cc1d 100644 --- a/NSession.h +++ b/NSession.h @@ -26,7 +26,7 @@ #include "PyTemplates.h" #include "SessionPool.h" -#include "tmprowset.h" +#include "TmpRowset.h" #include #include // for IDataConvert diff --git a/RowDescriptor.cpp b/RowDescriptor.cpp index ad03834..19ee558 100644 --- a/RowDescriptor.cpp +++ b/RowDescriptor.cpp @@ -1,7 +1,7 @@ // Copyright © 2023 CCP ehf. #include "RowDescriptor.h" -#include "utils.h" +#include "Utils.h" #include diff --git a/SessionPool.cpp b/SessionPool.cpp index 167a119..4ba8d6d 100644 --- a/SessionPool.cpp +++ b/SessionPool.cpp @@ -24,7 +24,7 @@ ************************************************************************* */ -#include "stdafx.h" +#include "StdAfx.h" #include "SessionPool.h" #include diff --git a/SqlCommand.cpp b/SqlCommand.cpp index 70fe641..c488fde 100644 --- a/SqlCommand.cpp +++ b/SqlCommand.cpp @@ -3,7 +3,7 @@ #include "PythonBuff.h" -#include "utils.h" +#include "Utils.h" using Utilities::DbExc_RuntimeError; #include "NSession.h" diff --git a/SqlCommand.h b/SqlCommand.h index c9dc64e..6b922d1 100644 --- a/SqlCommand.h +++ b/SqlCommand.h @@ -23,7 +23,7 @@ #define _SQLCOMMAND_H_ #include "StdAfx.h" -#include "tmprowset.h" +#include "TmpRowset.h" #include "Accessor.h" class NSession; diff --git a/StdAfx.cpp b/StdAfx.cpp index 667bc51..31224c7 100644 --- a/StdAfx.cpp +++ b/StdAfx.cpp @@ -3,7 +3,7 @@ // db.pch will be the pre-compiled header // stdafx.obj will contain the pre-compiled type information -#include "stdafx.h" +#include "StdAfx.h" // TODO: reference any additional headers you need in STDAFX.H // and not in this file diff --git a/StringStore.cpp b/StringStore.cpp index 6f0ca20..47d676d 100644 --- a/StringStore.cpp +++ b/StringStore.cpp @@ -1,5 +1,5 @@ // Copyright © 2014 CCP ehf. -#include "stdafx.h" +#include "StdAfx.h" #include "StringStore.h" template <> diff --git a/TmpRowset.h b/TmpRowset.h index 522b8d7..6c0c825 100644 --- a/TmpRowset.h +++ b/TmpRowset.h @@ -29,7 +29,7 @@ #include #include #include -#include "utils.h" +#include "Utils.h" #include "DelayedException.h" #include "StringStore.h" #include "BlockAllocator.h"