Displaying 1 result from an estimated 1 matches for "cpprock".
Did you mean:
cpproc
2014 Jun 05
1
C++11
...various
workarounds for older compilers.
Both GCC and Clang seem to already fully support C++11 on the
compiler side, though the library support may not yet be complete.
This 3 month old blog post suggest MSVC and Intel's compiler both
support much of C++11, though not yet everything:
http://cpprocks.com/c1114-compiler-and-library-shootout/
So it's probably not reasonable to use C++11 features without
restriction, but there are plenty of useful things which are widely
supported, and the common subset should grow with time.
Some questions:
* Is anyone currently using Xapian with a C++ co...