mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +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:
parent
8147976d9f
commit
ffd7a3aa4f
@ -32,6 +32,7 @@ n UnitsAPI
|
||||
n gp
|
||||
n math
|
||||
r OS
|
||||
n FlexLexer
|
||||
t TKMath
|
||||
t TKernel
|
||||
n Adaptor2d
|
||||
|
@ -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)
|
||||
}
|
||||
}
|
||||
|
@ -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)
|
||||
{
|
||||
|
@ -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);
|
||||
|
@ -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; }
|
||||
|
Loading…
x
Reference in New Issue
Block a user