Hello,

  I thought I could use  _GLIBCXX_CONCEPT_CHECKS  this way:

$ cat l.cxx
#include <algorithm>
#include <list>

int main()
{
  std::list<int> l;
  std::sort(l.begin(), l.end());
  return 0;
}

$ g++ -D_GLIBCXX_CONCEPT_CHECKS l.cxx 2>&1|
wc
     57     565   13383
$ g++ l.cxx 2>&1|
wc
     18     156    2784

Concept checking is making my output even worse... or am I missing
something here ?

Thanks
-Mathieu

_______________________________________________
help-gplusplus mailing list
help-gplusplus@gnu.org
http://lists.gnu.org/mailman/listinfo/help-gplusplus

Reply via email to