From 9219a3162e502d9e98a9b13f550554e2334a124e Mon Sep 17 00:00:00 2001 From: Pasukhin Dmitry Date: Tue, 22 Jul 2025 13:10:36 +0100 Subject: [PATCH] Foundation classes - Include brackets type fix (#635) - Updates include statements to use angle brackets for foundation class headers --- src/DataExchange/TKDESTEP/StepFile/step.tab.hxx | 2 +- .../TKernel/NCollection/NCollection_DynamicArray.hxx | 4 ++-- .../TKernel/NCollection/NCollection_String.hxx | 2 +- .../TKernel/NCollection/NCollection_UtfIterator.hxx | 2 +- .../TKernel/NCollection/NCollection_UtfString.hxx | 2 +- .../TKernel/TCollection/TCollection_AsciiString.lxx | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/DataExchange/TKDESTEP/StepFile/step.tab.hxx b/src/DataExchange/TKDESTEP/StepFile/step.tab.hxx index bc2c32934f..fa023aad4b 100644 --- a/src/DataExchange/TKDESTEP/StepFile/step.tab.hxx +++ b/src/DataExchange/TKDESTEP/StepFile/step.tab.hxx @@ -789,7 +789,7 @@ private: // but only if this has not been done yet, to avoid redefinition #if !defined(yyFlexLexer) && !defined(FlexLexerOnce) #define yyFlexLexer stepFlexLexer - #include "FlexLexer.h" + #include #endif namespace step diff --git a/src/FoundationClasses/TKernel/NCollection/NCollection_DynamicArray.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_DynamicArray.hxx index 156b458181..f55be66839 100644 --- a/src/FoundationClasses/TKernel/NCollection/NCollection_DynamicArray.hxx +++ b/src/FoundationClasses/TKernel/NCollection/NCollection_DynamicArray.hxx @@ -14,8 +14,8 @@ #ifndef NCollection_DynamicArray_HeaderFile #define NCollection_DynamicArray_HeaderFile -#include "NCollection_Allocator.hxx" -#include "NCollection_BasePointerVector.hxx" +#include +#include #include #include #include diff --git a/src/FoundationClasses/TKernel/NCollection/NCollection_String.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_String.hxx index bed6772e11..d12c98e51f 100755 --- a/src/FoundationClasses/TKernel/NCollection/NCollection_String.hxx +++ b/src/FoundationClasses/TKernel/NCollection/NCollection_String.hxx @@ -16,7 +16,7 @@ #ifndef NCollection_String_HeaderFile #define NCollection_String_HeaderFile -#include "NCollection_UtfString.hxx" +#include typedef NCollection_Utf8String NCollection_String; diff --git a/src/FoundationClasses/TKernel/NCollection/NCollection_UtfIterator.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_UtfIterator.hxx index 6082a4430f..d2f7b3c879 100755 --- a/src/FoundationClasses/TKernel/NCollection/NCollection_UtfIterator.hxx +++ b/src/FoundationClasses/TKernel/NCollection/NCollection_UtfIterator.hxx @@ -243,6 +243,6 @@ typedef NCollection_UtfIterator NCollection_Utf32Iter; typedef NCollection_UtfIterator NCollection_UtfWideIter; // template implementation -#include "NCollection_UtfIterator.lxx" +#include #endif // _NCollection_UtfIterator_H__ diff --git a/src/FoundationClasses/TKernel/NCollection/NCollection_UtfString.hxx b/src/FoundationClasses/TKernel/NCollection/NCollection_UtfString.hxx index 1390156622..b54a2536e4 100755 --- a/src/FoundationClasses/TKernel/NCollection/NCollection_UtfString.hxx +++ b/src/FoundationClasses/TKernel/NCollection/NCollection_UtfString.hxx @@ -330,6 +330,6 @@ typedef NCollection_UtfString NCollection_Utf32String; typedef NCollection_UtfString NCollection_UtfWideString; // template implementation (inline methods) -#include "NCollection_UtfString.lxx" +#include #endif // _NCollection_UtfString_H__ diff --git a/src/FoundationClasses/TKernel/TCollection/TCollection_AsciiString.lxx b/src/FoundationClasses/TKernel/TCollection/TCollection_AsciiString.lxx index ce44c1e97f..f4edec9638 100644 --- a/src/FoundationClasses/TKernel/TCollection/TCollection_AsciiString.lxx +++ b/src/FoundationClasses/TKernel/TCollection/TCollection_AsciiString.lxx @@ -15,7 +15,7 @@ #include #include #include -#include "TCollection_AsciiString.hxx" +#include // definition global methods for using in NCollection -- 2.39.5