You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/build/cmakesettings-reference.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -139,6 +139,7 @@ When the active configuration specifies a Visual Studio generator, by default MS
139
139
```
140
140
141
141
Note that if you do not define the `"type"`, the `"STRING"` type will be assumed by default.
142
+
142
143
-`remoteCopyOptimizations`: **Visual Studio 2019 version 16.5 or later** properties for controlling source copy to the remote target. Optimizations are enabled by default. Includes `remoteCopyUseOptimizations`, `rsyncSingleDirectoryCommandArgs`, and `remoteCopySourcesMaxSmallChange`.
Copy file name to clipboardExpand all lines: docs/cpp/program-and-linkage-cpp.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,7 @@ A *free function* is a function that is defined at global or namespace scope. No
41
41
You can force a global name to have internal linkage by explicitly declaring it as **static**. This limits its visibility to the same translation unit in which it is declared. In this context, **static** means something different than when applied to local variables.
42
42
43
43
The following objects have internal linkage by default:
Copy file name to clipboardExpand all lines: docs/error-messages/tool-errors/linker-tools-error-lnk1561.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,7 @@ entry point must be defined
12
12
The linker did not find an *entry point*, the initial function to call in your executable. By default, the linker looks for a `main` or `wmain` function for a console app, a `WinMain` or `wWinMain` function for a Windows app, or `DllMain` for a DLL that requires initialization. You can specify another function by using the [/ENTRY](../../build/reference/entry-entry-point-symbol.md) linker option.
13
13
14
14
This error can have several causes:
15
+
15
16
- You may not have included the file that defines your entry point in the list of files to link. Verify that the file that contains the entry point function is linked into your app.
16
17
- You may have defined the entry point using the wrong function signature; for example, you may have misspelled or used the wrong case for the function name, or specified the return type or parameter types incorrectly.
17
18
- You may not have specified the [/DLL](../../build/reference/dll-build-a-dll.md) option when building a DLL.
Copy file name to clipboardExpand all lines: docs/overview/visual-cpp-language-conformance.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -407,6 +407,7 @@ previous `std::experimental` version, made necessary by symlink support, bug fix
407
407
<aname="note_rem"></a> __rem__ Features removed when the [/std:c++17](../build/reference/std-specify-language-standard-version.md) (or [/std:c++latest](../build/reference/std-specify-language-standard-version.md)) compiler option is specified. These features can be re-enabled to ease the transition to newer language modes by use of these macros: `_HAS_AUTO_PTR_ETC`, `_HAS_FUNCTION_ALLOCATOR_SUPPORT`, `_HAS_OLD_IOSTREAMS_MEMBERS`, and `_HAS_UNEXPECTED`.
408
408
409
409
<aname="note_charconv"></a> __charconv__`from_chars()` and `to_chars()` are available for integers. The timeline for floating-point `from_chars()` and floating-point `to_chars()` is as follows:
410
+
410
411
- VS 2017 15.7: Integer `from_chars()` and `to_chars()`.
411
412
- VS 2017 15.8: Floating-point `from_chars()`.
412
413
- VS 2017 15.9: Floating-point `to_chars()` overloads for shortest decimal.
0 commit comments