Skip to content

Commit 56d3456

Browse files
author
Michael Blome
committed
Fixed typo in what's new
1 parent 9340832 commit 56d3456

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docs/top/what-s-new-for-visual-cpp-in-visual-studio.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,21 +39,21 @@ The compiler and tools version number in [!INCLUDE[vs_dev15_md](../misc/includes
3939
## C++ Compiler
4040

4141
### C++ conformance improvements
42-
In this release, we've updated the C++ compiler and standard library with enhanced support for C++11 and C++14 features, as well as preliminary support for certain features expected to be in the C++17 standard. In addition, several new compiler switches have been added. For detailed information, see [C++ Conformance Improvements in Visual Studio 2017](cpp-conformance-improvements-2017.md).
42+
In this release, we've updated the C++ compiler and standard library with enhanced support for C++11 and C++14 features, as well as preliminary support for certain features expected to be in the C++17 standard. For detailed information, see [C++ Conformance Improvements in Visual Studio 2017](cpp-conformance-improvements-2017.md).
4343

4444
### New compiler switches
4545

46-
New compiler switches enable you to opt-in to specific versions of the ISO C++ programming language in a project. The switches available in Visual Studio 2017 are /std:c++14 and /std:c++latest. For more information, see [Standards version switches in the compiler](https://blogs.msdn.microsoft.com/vcblog/2016/06/07/standards-version-switches-in-the-compiler). Most of the new draft standard features are guarded by the /std:c++latest switch. In addtion, these new compiler switches have been added:
46+
-**/std:c++14** and **/std:c++latest**: These new compiler switches enable you to opt-in to specific versions of the ISO C++ programming language in a project. For more information, see [Standards version switches in the compiler](https://blogs.msdn.microsoft.com/vcblog/2016/06/07/standards-version-switches-in-the-compiler). Most of the new draft standard features are guarded by the /std:c++latest switch.
4747

48-
-[/permissive-](vcppdocs/build/reference/permissive-standards-conformance.md): Enable all strict standards conformance compiler options and disable all Microsoft-specific compiler extensions. (off by default but will be on by default at some point in the future.)
48+
-[/permissive-](vcppdocs/build/reference/permissive-standards-conformance.md): Enable all strict standards conformance compiler options and disable all Microsoft-specific compiler extensions. (Off by default but will be on by default at some point in the future.)
4949

5050
-[/diagnostics](vcppdocs/build/reference/diagnostics-compiler-diagnostic-options.md):
5151
Enable display of the line number, the line number and column, or the line number and column and a caret under the line of code where the diagnostic error or warning was found.
5252

5353
-[/debug:fastlink](vcppdocs/build/reference/debug-generate-debug-info.md):
5454
Enable up to 30% faster incremental link times (vs. Visual Studio 2015) by not copying all debug information into the PDB file. The PDB file instead points to the debug information for the object and library files used to create the executable. See [Faster C++ build cycle in VS “15” with /Debug:fastlink](https://blogs.msdn.microsoft.com/vcblog/2016/10/05/faster-c-build-cycle-in-vs-15-with-debugfastlink/) and [Recommendations to speed C++ builds in Visual Studio](https://blogs.msdn.microsoft.com/vcblog/2016/10/26/recommendations-to-speed-c-builds-in-visual-studio/).
5555

56-
[!INCLUDE[vs_dev15_md](../misc/includes/vs_dev15_md.md)] RC allows using /sdl with /await. We removed /rtc limitation with Coroutines.
56+
[!INCLUDE[vs_dev15_md](../misc/includes/vs_dev15_md.md)] allows using /sdl with /await. We removed the /rtc limitation with Coroutines.
5757

5858
### Codegen, security, diagnostics and versioning
5959
This release brings several improvements in optimization, code generation, toolset versioning and diagnostics. Some notable improvements include:

0 commit comments

Comments
 (0)