From cf37f904295b10c9f8b8f2c25a34e7aa9c6538cf Mon Sep 17 00:00:00 2001 From: Charly Chevalier Date: Wed, 15 Jul 2015 21:18:00 +0200 Subject: [PATCH] Fix typo (_x86 -> _X86) --- doc/predef.qbk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/predef.qbk b/doc/predef.qbk index 1f3eeab..0ee645f 100644 --- a/doc/predef.qbk +++ b/doc/predef.qbk @@ -256,7 +256,7 @@ When writing SIMD specific code, you may want to check if a particular extension has been detected. To do so you have to use the right architecture predef and compare it. Those predef are of the form `BOOST_HW_SIMD_"ARCH"` (where `"ARCH"` is either `ARM`, `PPC`, or `X86`). For example, if you compile code for x86 -architecture, you will have to use `BOOST_HW_SIMD_x86`. Its value will be the +architecture, you will have to use `BOOST_HW_SIMD_X86`. Its value will be the version number of the most recent SIMD extension detected for the architecture. To check if an extension has been enabled: