Starting in 11.0 the Intel(R) C++ Compiler has supported some of the C++11 features (previously called C++0x). With the latest release of Intel C++ Composer XE for Windows*, Linux* and Mac OS* X 2013, more C++11 features are supported.
C++0x
Some gcc Headers will not Compile due to Use of C++0x Variadic Templates
Versions of the gcc headers tuple, mutex, thread, type_traits, functional and future will not compile with the Intel compiler.
Бьерн Страуструп: "Нам нужна усовершенствованная модель разработки алгоритмов параллельных вычислений на высоком уровне абстракции"
13 октября в Москву первый раз в жизни прилетит человек, придумавший C++, Берн Страуструп. Кроме посещения Красной площади и Большого театра он выступит с докладом на конференции «Разработка ПО 2010» и проведет четырехчасовой мастер-класс. А пока этого не случилось, мне удалось задать Берну несколько вопросов, как ожидаемых, так и не очень. И даже получить на них ответы.
Static code analysis and the new language standard C++0x
The article discusses the new capabilities of C++ language described in the standard C++0x and supported in Visual Studio 2010. By the example of PVS-Studio we will see how the changes in the language influence static code analysis tools.
In what way can C++0x standard help you eliminate 64-bit errors
Programmers see in C++0x standard an opportunity to use lambda-functions and other entities I do not quite understand :). But personally I see convenient means in it that allow us to get rid of many 64-bit errors.
Consider a function that returns "true" if at least one string contains the sequence "ABC".
Consider a function that returns "true" if at least one string contains the sequence "ABC".
typedef vector<string> ArrayOfStrings;
bool Find_Incorrect(const ArrayOfStrings &arrStr)
{
Как стандарт C++0x поможет в борьбе с 64-битными ошибками
Программисты видят в стандарте C++0x возможность использовать лямбда-функции и прочие мало понятные для меня сущности :). Я увидел в нем удобные средства, позволяющие исключить многие 64-битные ошибки.
Рассмотрим функцию, которая возвращает true, если хотя бы в одной из строк встречается последовательность "ABC".
Рассмотрим функцию, которая возвращает true, если хотя бы в одной из строк встречается последовательность "ABC".
typedef vector<string> ArrayOfStrings;
Exception handling in TBB 2.2 - Getting ready for C++0x
I've never finished the series of the blogs devoted to exception handling and cancellation I started last year, and now seems to be a convenient moment to do this at last. Why now?
Intel C++ Compiler Options for ISO/IEC Standards and Language Conformance
The Intel C++ compiler conforms to different ISO/IEC specific language standards using compiler option /Qstd on Windows and –std on Linux.
