mirror of
https://github.com/microsoft/GSL.git
synced 2024-11-03 17:56:43 -05:00
Add copy assignment operator to BoundsRanges
`BoundsRanges` defines copy constructor, but lacks `=` operator
This commit is contained in:
parent
557e6693b5
commit
995cfdf1cb
@ -292,6 +292,7 @@ namespace details
|
|||||||
{}
|
{}
|
||||||
|
|
||||||
BoundsRanges (const BoundsRanges&) = default;
|
BoundsRanges (const BoundsRanges&) = default;
|
||||||
|
BoundsRanges& operator=(const BoundsRanges&) = default;
|
||||||
BoundsRanges(const std::ptrdiff_t* const) { }
|
BoundsRanges(const std::ptrdiff_t* const) { }
|
||||||
BoundsRanges() = default;
|
BoundsRanges() = default;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user