Skip to content

Commit a901519

Browse files
author
Colin Robertson
committed
Links fixed in more places
1 parent af41ecd commit a901519

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.openpublishing.redirection.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"redirections": [
33
{
44
"source_path": "docs/cpp-conformance-improvements-2017.md",
5-
"redirect_url": "/cpp/overview/cpp-conformance-improvements-2017",
5+
"redirect_url": "/cpp/overview/cpp-conformance-improvements",
66
"redirect_document_id": true
77
},
88

@@ -42,6 +42,11 @@
4242
"redirect_url": "/cpp/overview//visual-cpp-samples",
4343
"redirect_document_id": true
4444
},
45+
{
46+
"source_path": "docs/what-s-new-for-visual-cpp-in-visual-studio.md",
47+
"redirect_url": "/cpp/overview/what-s-new-for-visual-cpp-in-visual-studio",
48+
"redirect_document_id": true
49+
},
4550
{
4651
"source_path": "docs/ide/visual-cpp-tools-and-features-in-visual-studio-editions.md",
4752
"redirect_url": "/cpp/overview/visual-cpp-tools-and-features-in-visual-studio-editions",

docs/cpp/constructors-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,7 @@ Derived d3 = d2 calls: Base(Base&)
627627
Derived d4 calls: Base()*/
628628
```
629629

630-
**Visual Studio 2017 version 15.7 and later**: The **using** statement in **/std:C++17** mode brings into scope all constructors from the base class except those that have an identical signature to constructors in the derived class. In general, it is best to use inheriting constructors when the derived class declares no new data members or constructors. See also [Improvements in Visual Studio 2017 version 15.7](../overview/cpp-conformance-improvements-2017.md#improvements_157).
630+
**Visual Studio 2017 version 15.7 and later**: The **using** statement in **/std:C++17** mode brings into scope all constructors from the base class except those that have an identical signature to constructors in the derived class. In general, it is best to use inheriting constructors when the derived class declares no new data members or constructors. See also [Improvements in Visual Studio 2017 version 15.7](../overview/cpp-conformance-improvements.md#improvements_157).
631631

632632
A class template can inherit all the constructors from a type argument if that type specifies a base class:
633633

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Visual Studio 2019 brings many updates and fixes to the Microsoft C++ environmen
2121

2222
- [C++20 P1008R1 - prohibiting aggregates with user-declared constructors](http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2018/p1008r1.pdf) is also complete.
2323

24-
- Enhanced support for C++17 features, plus experimental support for C++20 features such as modules and coroutines. For detailed information, see [C++ Conformance Improvements in Visual Studio 2019](cpp-conformance-improvements-2019.md).
24+
- Enhanced support for C++17 features, plus experimental support for C++20 features such as modules and coroutines. For detailed information, see [C++ Conformance Improvements in Visual Studio 2019](../cpp-conformance-improvements.md).
2525

2626
- The C++ compiler switch `/Gm` is now deprecated. Consider disabling the `/Gm` switch in your build scripts if it's explicitly defined. However, you can also safely ignore the deprecation warning for `/Gm`, because it's not treated as an error when using "Treat warnings as errors" (`/WX`).
2727

0 commit comments

Comments
 (0)