1
0
mirror of https://github.com/microsoft/GSL.git synced 2025-04-26 02:45:32 -04:00

Add copy assignment operator to BoundsRanges

`BoundsRanges` defines copy constructor, but lacks `=` operator
This commit is contained in:
Vladislav Yaroslavlev 2015-11-12 10:46:21 +03:00
parent 557e6693b5
commit 995cfdf1cb

@ -292,6 +292,7 @@ namespace details
{}
BoundsRanges (const BoundsRanges&) = default;
BoundsRanges& operator=(const BoundsRanges&) = default;
BoundsRanges(const std::ptrdiff_t* const) { }
BoundsRanges() = default;