This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [Patch] Implementation of n3793 <experimental/optional>


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."


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]