Skip to content

Update /events links to /shows #5594

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ Double-click, right-click, or press **Enter** while on a file in the **Functions
[Build Insights tips and tricks](build-insights-tips.md)\
[Inline functions (C++)](../../cpp/inline-functions-cpp.md)\
[Faster C++ builds, simplified: a new metric for time](https://devblogs.microsoft.com/cppblog/faster-cpp-builds-simplified-a-new-metric-for-time)\
[Build Insights in Visual Studio video - Pure Virtual C++ 2023](/events/pure-virtual-cpp-2023/build-insights-in-visual-studio)\
[Build Insights in Visual Studio video - Pure Virtual C++ 2023](/shows/pure-virtual-cpp-2023/build-insights-in-visual-studio)\
[Troubleshoot header file impact on build time](build-insights-included-files-view.md)\
[Functions View for Build Insights in Visual Studio 2022 17.8](https://devblogs.microsoft.com/cppblog/functions-view-for-build-insights-in-visual-studio-2022-17-8/)\
[Tutorial: vcperf and Windows Performance Analyzer](vcperf-and-wpa.md)\
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ Or, you can right-click a file in the **Include Tree** view to jump to it in the

[Build Insights tips and tricks](build-insights-tips.md)\
[Compare header units, modules, and precompiled headers](../../build/compare-inclusion-methods.md)\
[Build Insights in Visual Studio video - Pure Virtual C++ 2023](/events/pure-virtual-cpp-2023/build-insights-in-visual-studio)\
[Build Insights in Visual Studio video - Pure Virtual C++ 2023](/shows/pure-virtual-cpp-2023/build-insights-in-visual-studio)\
[Faster C++ builds, simplified: a new metric for time](https://devblogs.microsoft.com/cppblog/faster-cpp-builds-simplified-a-new-metric-for-time)\
[Troubleshoot function inlining on build time](build-insights-function-view.md)\
[vcperf and Windows Performance Analyzer](vcperf-and-wpa.md)
2 changes: 1 addition & 1 deletion docs/build-insights/tutorials/build-insights-tips.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ To see a short description for the tabs in the Build Insights window, along with

## See also

[Build Insights in Visual Studio video - Pure Virtual C++ 2023](/events/pure-virtual-cpp-2023/build-insights-in-visual-studio)\
[Build Insights in Visual Studio video - Pure Virtual C++ 2023](/shows/pure-virtual-cpp-2023/build-insights-in-visual-studio)\
[Improving code generation time with C++ Build Insights](https://devblogs.microsoft.com/cppblog/improving-code-generation-time-with-cpp-build-insights)\
[Troubleshoot header file impact on build time](build-insights-included-files-view.md)\
[Tutorial: Troubleshoot function inlining on build time](build-insights-function-view.md)
2 changes: 1 addition & 1 deletion docs/build/cmake-presets-vs.md
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ cmake --build --preset <buildPreset-name>

## Example *`CMakePresets.json`* file

The *`CMakePresets.json`* file in [box2d-lite](https://github.com/esweet431/box2d-lite/blob/vs-launch/CMakePresets.json) contains examples of Configure Presets, Build Presets, and Test Presets. For more information about this example, see the presentation [An Introduction to CMakePresets.json](/events/cpp-pure-virtual-cpp-2021/an-introduction-to-cmakepresetsjson). You can see another example in the [DirectXTK](https://github.com/microsoft/DirectXTK/blob/main/CMakePresets.json) project, which shows many build targets in its `configurePresets` section.
The *`CMakePresets.json`* file in [box2d-lite](https://github.com/esweet431/box2d-lite/blob/vs-launch/CMakePresets.json) contains examples of Configure Presets, Build Presets, and Test Presets. For more information about this example, see the presentation [An Introduction to CMakePresets.json](/shows/cpp-pure-virtual-cpp-2021/an-introduction-to-cmakepresetsjson). You can see another example in the [DirectXTK](https://github.com/microsoft/DirectXTK/blob/main/CMakePresets.json) project, which shows many build targets in its `configurePresets` section.

## Next steps

Expand Down
2 changes: 1 addition & 1 deletion docs/standard-library/random.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Here are some tips to keep in mind when using `<random>`:

- The most useful pairing for most applications is the `mt19937` engine with `uniform_int_distribution`, as shown in the [code example](#code) later in this article.

There are many options to choose from in the `<random>` header, and any of them is preferable to the outdated C Runtime function `rand()`. For information about what's wrong with `rand()` and how `<random>` addresses these shortcomings, see [this video](/events/goingnative-2013/rand-considered-harmful).
There are many options to choose from in the `<random>` header, and any of them is preferable to the outdated C Runtime function `rand()`. For information about what's wrong with `rand()` and how `<random>` addresses these shortcomings, see [this video](/shows/goingnative-2013/rand-considered-harmful).

## <a name="code"></a> Examples

Expand Down