mirror of
https://github.com/tfussell/xlnt.git
synced 2024-03-22 13:11:17 +08:00
Resolve CI build failure
This commit is contained in:
parent
a8fa6637fe
commit
399b5e3775
|
@ -117,6 +117,11 @@ public:
|
||||||
/// </summary>
|
/// </summary>
|
||||||
const class cell cell(const cell_reference &ref) const;
|
const class cell cell(const cell_reference &ref) const;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The worksheet this range targets
|
||||||
|
/// </summary>
|
||||||
|
const worksheet & target_worksheet() const;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the reference defining the bounds of this range.
|
/// Returns the reference defining the bounds of this range.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -139,7 +139,7 @@ const std::vector<ext_list::ext> &ext_list::extensions() const
|
||||||
|
|
||||||
bool ext_list::operator==(const ext_list &rhs) const
|
bool ext_list::operator==(const ext_list &rhs) const
|
||||||
{
|
{
|
||||||
return std::equal(extensions_.begin(), extensions_.end(), rhs.extensions_.begin(), rhs.extensions_.end());
|
return extensions_ == rhs.extensions_;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
|
@ -39,9 +39,7 @@ range::range(worksheet ws, const range_reference &reference, major_order order,
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
range::~range()
|
range::~range() = default;
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void range::clear_cells()
|
void range::clear_cells()
|
||||||
{
|
{
|
||||||
|
@ -71,6 +69,11 @@ cell_vector range::operator[](std::size_t index)
|
||||||
return vector(index);
|
return vector(index);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const worksheet &range::target_worksheet() const
|
||||||
|
{
|
||||||
|
return ws_;
|
||||||
|
}
|
||||||
|
|
||||||
range_reference range::reference() const
|
range_reference range::reference() const
|
||||||
{
|
{
|
||||||
return ref_;
|
return ref_;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user