Skip to content

Commit 22ad0c6

Browse files
authored
Merge pull request #5704 from MicrosoftDocs/main
11/26/2024 AM Publish
2 parents f8b1162 + 42d77de commit 22ad0c6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/atl/reference/ccomsafearray-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ Retrieves an element from the array.
526526

527527
```cpp
528528
T& operator[](long lindex) const;
529-
T& operator[]int nindex) const;
529+
T& operator[](int nindex) const;
530530
```
531531

532532
### Parameters

docs/atl/reference/csimplearray-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ Removes all elements currently stored in the array.
252252
Removes the specified element from the array.
253253

254254
```
255-
BOOL RemoveAtint nIndex);
255+
BOOL RemoveAt(int nIndex);
256256
```
257257

258258
### Parameters

docs/build/reference/md-mt-ld-use-run-time-library.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Indicates whether a multithreaded module is a DLL and specifies retail or debug
2222

2323
|Option|Description|
2424
|------------|-----------------|
25-
|**/MD**|Causes the application to use the multithread-specific and DLL-specific version of the run-time library. Defines `_MT` and `_DLL` and causes the compiler to place the library name MSVCRT.lib into the .obj file.<br /><br /> Applications compiled with this option are statically linked to MSVCRT.lib. This library provides a layer of code that enables the linker to resolve external references. The actual working code is contained in MSVCR*versionnumber*.DLL, which must be available at run time to applications linked with MSVCRT.lib.|
25+
|**/MD**|Causes the application to use the multithread-specific and DLL-specific version of the run-time library. Defines `_MT` and `_DLL` and causes the compiler to place the library name MSVCRT.lib into the .obj file.|
2626
|**/MDd**|Defines `_DEBUG`, `_MT`, and `_DLL` and causes the application to use the debug multithread-specific and DLL-specific version of the run-time library. It also causes the compiler to place the library name MSVCRTD.lib into the .obj file.|
2727
|**/MT**|Causes the application to use the multithread, static version of the run-time library. Defines `_MT` and causes the compiler to place the library name LIBCMT.lib into the .obj file so that the linker will use LIBCMT.lib to resolve external symbols.|
2828
|**/MTd**|Defines `_DEBUG` and `_MT`. This option also causes the compiler to place the library name LIBCMTD.lib into the .obj file so that the linker will use LIBCMTD.lib to resolve external symbols.|

0 commit comments

Comments
 (0)