1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-02 17:46:22 +03:00

0033544: Foundation Classes - Fixing compiler problems [HotFix]

Fixed problem with Clang-16
Fixed problem with SWIG-4
Fixed genproj procedure
This commit is contained in:
dpasukhi 2023-12-06 10:42:54 +00:00
parent 8147976d9f
commit ffd7a3aa4f
5 changed files with 15 additions and 36 deletions

View File

@ -32,6 +32,7 @@ n UnitsAPI
n gp
n math
r OS
n FlexLexer
t TKMath
t TKernel
n Adaptor2d

View File

@ -253,6 +253,6 @@ void Message_AttributeMeter::DumpJson (Standard_OStream& theOStream,
anIterator.More(); anIterator.Next())
{
OCCT_DUMP_VECTOR_CLASS (theOStream, Message::MetricToString (anIterator.Key()),
2, anIterator.Value(), anIterator.Value())
2, anIterator.Value().first, anIterator.Value().second)
}
}

View File

@ -72,26 +72,10 @@ public:
using iterator = NCollection_IndexedIterator<std::random_access_iterator_tag, NCollection_Array1, value_type, false>;
using const_iterator = NCollection_IndexedIterator<std::random_access_iterator_tag, NCollection_Array1, value_type, true>;
using Iterator = NCollection_Iterator<NCollection_Array1<TheItemType>>;
public:
// Iterator class
class Iterator : public NCollection_Iterator<NCollection_Array1>
{
public:
using NCollection_Iterator<NCollection_Array1>::NCollection_Iterator;
const_reference Value() const
{
return *NCollection_Iterator<NCollection_Array1>::ValueIter();
}
reference ChangeValue()
{
return *NCollection_Iterator<NCollection_Array1>::ChangeValueIter();
}
};
const_iterator begin() const
{
return const_iterator(*this);
@ -150,7 +134,7 @@ public:
mySize(theUpper - theLower + 1),
myPointer(nullptr),
myIsOwner(false),
allocator_type(theAlloc)
myAllocator(theAlloc)
{
if (mySize == 0)
{

View File

@ -77,26 +77,10 @@ public:
using iterator = NCollection_IndexedIterator<std::random_access_iterator_tag, NCollection_DynamicArray, value_type, false>;
using const_iterator = NCollection_IndexedIterator<std::random_access_iterator_tag, NCollection_DynamicArray, value_type, true>;
using Iterator = NCollection_Iterator<NCollection_DynamicArray<TheItemType>>;
public:
// Iterator class
class Iterator : public NCollection_Iterator<NCollection_DynamicArray>
{
public:
using NCollection_Iterator<NCollection_DynamicArray>::NCollection_Iterator;
const_reference Value() const
{
return *NCollection_Iterator<NCollection_DynamicArray>::ValueIter();
}
reference ChangeValue()
{
return *NCollection_Iterator<NCollection_DynamicArray>::ChangeValueIter();
}
};
const_iterator begin() const
{
return const_iterator(*this);

View File

@ -94,6 +94,16 @@ public:
++(myCur);
}
const typename Container::const_reference Value() const
{
return *myCur;
}
const typename Container::reference ChangeValue()
{
return *myCur;
}
bool operator==(const NCollection_Iterator& theOther) { return myLast == theOther.myLast && myCur == theOther.myCur; }
bool operator!=(const NCollection_Iterator& theOther) { return myLast != theOther.myLast || myCur != theOther.myCur; }