Yes folks, if you’re on UNIX-like platforms (Mac, BSD, Linux) then you’re in luck: the clang project in its latest release (version 2.8) is now considered a production-ready compiler for C++. If you’re doing any sort of C++ template metaprogramming (like I do in the development of ...
Alex Ott wrote a fascinating blog post about Boost.Spirit v2.x’s integer parser performance compared to standard C’s ‘atoi’, in one example of how C++ is faster than C in some cases. He writes:
I did very primitive test of performance for new version of boost.spirit. I read somewhere...