Changes between Initial Version and Version 1 of Ticket #9189, comment 2


Ignore:
Timestamp:
Oct 5, 2013, 11:10:17 AM (9 years ago)
Author:
Andrey Semashev

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #9189, comment 2

    initial v1  
    1 The suggested change is not correct. "template<>" prepends a full specialization of a template (making the code a forward declaration of a full specialization. "template", on the other hand, is a prefix for explicit instantiation of the template. This instantiation is required so that the generated code is present in the compiled binary and not discarded.
     1The suggested change is not correct. "template<>" prepends a full specialization of a template (making the code a forward declaration of a full specialization). "template", on the other hand, is a prefix for explicit instantiation of the template. This instantiation is required so that the generated code is present in the compiled binary and not discarded.
    22
    33I tried this compiler locally on Linux and it failed in many respects, including problems with other libraries (Boost.Phoenix, AFAIR). For the amount of problems with this compiler I'm inclined to mark it as not supported. I've already added a note about it in the docs.