[Patch] Implementation of n3793 <experimental/optional>

Andreas Schwab schwab@linux-m68k.org
Sun Nov 3 09:49:00 GMT 2013


Jonathan Wakely <jwakely.gcc@gmail.com> writes:

> +  {
> +    std::experimental::optional<long> o { std::experimental::in_place, 0x1234ABCDF1E2D3C4 };
> +    auto copy = o;
> +    VERIFY( copy );
> +    VERIFY( *copy == 0x1234ABCDF1E2D3C4 );
> +    VERIFY( o && o == 0x1234ABCDF1E2D3C4 );
> +  }

experimental/optional/cons/copy.cc:70:20: error: no match for 'operator==' (operand types are 'std::experimental::optional<long int>' and 'long long int')
     VERIFY( o && o == 0x1234ABCDF1E2D3C4 );
                    ^

Andreas.

-- 
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."



More information about the Gcc-patches mailing list