Minor fixes
This commit is contained in:
@@ -116,6 +116,16 @@ namespace openVulkanoCpp
|
||||
return data;
|
||||
}
|
||||
|
||||
iterator begin() noexcept
|
||||
{
|
||||
return data;
|
||||
}
|
||||
|
||||
const_iterator begin() const noexcept
|
||||
{
|
||||
return data;
|
||||
}
|
||||
|
||||
iterator End() noexcept
|
||||
{
|
||||
return Begin() + Size();
|
||||
@@ -126,6 +136,16 @@ namespace openVulkanoCpp
|
||||
return Begin() + Size();
|
||||
}
|
||||
|
||||
iterator end() noexcept
|
||||
{
|
||||
return Begin() + Size();
|
||||
}
|
||||
|
||||
const_iterator end() const noexcept
|
||||
{
|
||||
return Begin() + Size();
|
||||
}
|
||||
|
||||
reverse_iterator ReverseBegin() noexcept
|
||||
{
|
||||
return reverse_iterator(End());
|
||||
@@ -189,7 +209,7 @@ namespace openVulkanoCpp
|
||||
|
||||
const T& At(size_t n) const
|
||||
{
|
||||
return const_cast<Array*>(this)->at(n);
|
||||
return const_cast<Array*>(this)->At(n);
|
||||
}
|
||||
|
||||
T& Front() noexcept
|
||||
|
||||
Reference in New Issue
Block a user