Skip to content

Prepend "C" to warning link texts #5198

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

Merged
Merged
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
8 changes: 4 additions & 4 deletions docs/code-quality/c26450.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ long long multiply()

## See also

[26451](c26451.md)\
[26452](c26452.md)\
[26453](c26453.md)\
[26454](c26454.md)\
[C26451](c26451.md)\
[C26452](c26452.md)\
[C26453](c26453.md)\
[C26454](c26454.md)\
[ES.103: Don't overflow](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-overflow)
8 changes: 4 additions & 4 deletions docs/code-quality/c26451.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ void leftshift(int i) noexcept

## See also

[26450](c26450.md)\
[26452](c26452.md)\
[26453](c26453.md)\
[26454](c26454.md)\
[C26450](c26450.md)\
[C26452](c26452.md)\
[C26453](c26453.md)\
[C26454](c26454.md)\
[ES.103: Don't overflow](https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#Res-overflow)
8 changes: 4 additions & 4 deletions docs/code-quality/c26452.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ unsigned long long combine(unsigned lo, unsigned hi)

## See also

[26450](c26450.md)\
[26451](c26451.md)\
[26453](c26453.md)\
[26454](c26454.md)\
[C26450](c26450.md)\
[C26451](c26451.md)\
[C26453](c26453.md)\
[C26454](c26454.md)\
[ES.101: Use unsigned types for bit manipulation](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-unsigned)\
[ES.102: Use signed types for arithmetic](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-signed)
8 changes: 4 additions & 4 deletions docs/code-quality/c26453.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ void leftshift(int shiftCount)

## See also

[26450](c26450.md)\
[26451](c26451.md)\
[26452](c26452.md)\
[26454](c26454.md)\
[C26450](c26450.md)\
[C26451](c26451.md)\
[C26452](c26452.md)\
[C26454](c26454.md)\
[ES.101: Use unsigned types for bit manipulation](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-unsigned)\
[ES.102: Use signed types for arithmetic](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-signed)
10 changes: 5 additions & 5 deletions docs/code-quality/c26454.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
description: "Learn more about: Arithmetic overflow: 'operator' operation produces a negative unsigned result at compile time"
title: Warning C26454
description: "Learn more about: Arithmetic overflow: 'operator' operation produces a negative unsigned result at compile time"
ms.date: 01/08/2017
f1_keywords: ["C26454", "RESULT_OF_ARITHMETIC_OPERATION_NEGATIVE_UNSIGNED"]
helpviewer_keywords: ["C26454"]
Expand Down Expand Up @@ -37,8 +37,8 @@ unsigned int negativeunsigned()

## See also

[26450](c26450.md)\
[26451](c26451.md)\
[26452](c26452.md)\
[26453](c26453.md)\
[C26450](c26450.md)\
[C26451](c26451.md)\
[C26452](c26452.md)\
[C26453](c26453.md)\
[ES.106: Don't try to avoid negative values by using unsigned](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Res-nonnegative)