Replace D1 operator overloads with D2 operator overloads - Part 2

This commit is contained in:
Mike 2019-07-04 17:41:14 +09:00
parent 07034ea4e6
commit f14acfecb1

View file

@ -1816,7 +1816,8 @@ public:
/*************************************** /***************************************
* Support for unary operator ~ for `BitArray`. * Support for unary operator ~ for `BitArray`.
*/ */
BitArray opCom() const pure nothrow BitArray opUnary(string op)() const pure nothrow
if (op == "~")
{ {
auto dim = this.dim; auto dim = this.dim;