Changes between Initial Version and Version 1 of Ticket #7624
- Timestamp:
- Nov 2, 2012, 2:01:08 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #7624 – Description
initial v1 10 10 int main() 11 11 { 12 find(boost::as_literal("fox"), 'x')(); 13 find(boost::as_literal("fox"), construct<char>(arg1))('x'); 14 find(boost::as_literal("fox"), arg1)('x'); 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 15 15 } 16 16 }}}