Skip to content

Commit 8dbf65f

Browse files
author
Colin Robertson
authored
Merge pull request MicrosoftDocs#1039 from NextTurn/http-6
Update http links
2 parents 6075008 + 3e2c3a3 commit 8dbf65f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/cpp/alignment-cpp-declarations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,4 @@ adr offset element
8787
8888
## See also
8989
90-
[Data Structure Alignment](http://en.wikipedia.org/wiki/Data_structure_alignment)
90+
[Data Structure Alignment](https://en.wikipedia.org/wiki/Data_structure_alignment)

docs/cpp/constructors-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ myclass mc(); // warning C4930: prototyped function not called (was a variab
131131
}
132132
```
133133

134-
This is an example of the Most Vexing Parse problem. Because the example expression can be interpreted either as the declaration of a function or as the invocation of a default constructor, and because C++ parsers favor declarations over other things, the expression is treated as a function declaration. For more information, see [Most Vexing Parse](http://en.wikipedia.org/wiki/Most_vexing_parse).
134+
This is an example of the Most Vexing Parse problem. Because the example expression can be interpreted either as the declaration of a function or as the invocation of a default constructor, and because C++ parsers favor declarations over other things, the expression is treated as a function declaration. For more information, see [Most Vexing Parse](https://en.wikipedia.org/wiki/Most_vexing_parse).
135135

136136
If any non-default constructors are declared, the compiler does not provide a default constructor:
137137

docs/cpp/identifiers-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ int main() {
7676
}
7777
```
7878

79-
The range of characters allowed in an identifier is less restrictive when compiling C++/CLI code. Identifiers in code compiled by using /clr should follow [Standard ECMA-335: Common Language Infrastructure (CLI)](http://www.ecma-international.org/publications/standards/Ecma-335.htm).
79+
The range of characters allowed in an identifier is less restrictive when compiling C++/CLI code. Identifiers in code compiled by using /clr should follow [Standard ECMA-335: Common Language Infrastructure (CLI)](https://www.ecma-international.org/publications/standards/Ecma-335.htm).
8080

8181
**END Microsoft Specific**
8282

docs/cpp/string-and-i-o-formatting-modern-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ int main()
3232
}
3333
```
3434

35-
This can be entirely too cumbersome in many cases. As an alternative, you can use Boost.Format from the Boost C++ libraries, even though it’s nonstandard. You can download any Boost library from the [Boost](http://www.boost.org/) website.
35+
This can be entirely too cumbersome in many cases. As an alternative, you can use Boost.Format from the Boost C++ libraries, even though it’s nonstandard. You can download any Boost library from the [Boost](https://www.boost.org/) website.
3636

3737
Some advantages of Boost.Format are:
3838

0 commit comments

Comments
 (0)