Changes between Initial Version and Version 1 of Ticket #7624


Ignore:
Timestamp:
Nov 2, 2012, 2:01:08 AM (10 years ago)
Author:
Dave Abrahams
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #7624 – Description

    initial v1  
    1010int main()
    1111{
    12     find(boost::as_literal("fox"), 'x')();                                           // works
    13     find(boost::as_literal("fox"), construct<char>(arg1))('x');        // works
    14     find(boost::as_literal("fox"), arg1)('x');                                    // compilation error
     12    find(boost::as_literal("fox"), 'x')();                      // works
     13    find(boost::as_literal("fox"), construct<char>(arg1))('x'); // works
     14    find(boost::as_literal("fox"), arg1)('x');                  // compilation error
    1515}
    1616}}}