Skip to content

Commit 7304c97

Browse files
authored
Merge pull request #5775 from MicrosoftDocs/main
OOB Publish 2/11 - ASAP
2 parents 98d6fa8 + 10da703 commit 7304c97

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ A quick highlight of some of the new features:
3333
- **C++ language enhancements**
3434

3535
- Try out C++23 preview features by setting the C++ Language Standard to `/std:c++23preview`. This setting enables the latest C++23 features and bug fixes. For more information, see [/std (Specify Language Standard Version)](../build/reference/std-specify-language-standard-version.md#stdc23preview).
36-
- Support add for C++23’s `size_t` literal suffix which helps avoid truncations or signed comparison mismatches--especially when writing loops. For example:
36+
- Support for C++23’s `size_t` literal suffix, which helps avoid truncations or signed comparison mismatches--especially when writing loops. For example:
3737
```cpp
3838
// Infinite loop if v.size > max unsigned int
3939
for (auto i = 0u; i < v.size(); ++i)
@@ -112,6 +112,8 @@ A quick highlight of some of the new features:
112112
GitHub Copilot is displaying a summary of the changes it made, such as 1. Create a new subclass range_breakpoint in include/libsdb/breakpoint.hpp" and 2. Implement the range_breakpoint class in src/breakpoint.cpp. An option to accept the changes is displayed.
113113
:::image-end:::
114114

115+
For more information, see [Iterate across multiple files more efficiently with GitHub Copilot Edits](https://devblogs.microsoft.com/visualstudio/iterate-across-multiple-files-more-efficiently-with-github-copilot-edits-preview/).
116+
115117
- **CMake**
116118
- Now supports CMake Presets v9. New macro expansions in a preset's include field. For more information, see [Macro expansion](https://cmake.org/cmake/help/latest/manual/cmake-presets.7.html#macro-expansion) in the official CMake documentation.
117119

0 commit comments

Comments
 (0)