Skip to content

Fix off-by-one error in Compiler Warnings by compiler version #5215

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
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 @@ -66,7 +66,7 @@ The following sections list the warnings introduced by each version of Visual C+

## Warnings introduced in Visual Studio 2022 version 17.13 (compiler version 19.43)

These warnings, and all warnings in later versions, are suppressed by using the compiler option **`/Wv:19.43`**.
These warnings, and all warnings in later versions, are suppressed by using the compiler option **`/Wv:19.42`**.

| Warning | Message |
|--|--|
Expand All @@ -76,7 +76,7 @@ These warnings, and all warnings in later versions, are suppressed by using the

## Warnings introduced in Visual Studio 2022 version 17.12 (compiler version 19.42)

These warnings, and all warnings in later versions, are suppressed by using the compiler option **`/Wv:19.42`**.
These warnings, and all warnings in later versions, are suppressed by using the compiler option **`/Wv:19.41`**.

| Warning | Message |
|--|--|
Expand All @@ -92,7 +92,7 @@ There were no new warnings introduced in 17.11

## Warnings introduced in Visual Studio 2022 version 17.10 (compiler version 19.40)

These warnings, and all warnings in later versions, are suppressed by using the compiler option **`/Wv:19.40`**.
These warnings, and all warnings in later versions, are suppressed by using the compiler option **`/Wv:19.39`**.

| Warning | Message |
|--|--|
Expand All @@ -107,7 +107,7 @@ These warnings, and all warnings in later versions, are suppressed by using the

## Warnings introduced in Visual Studio 2022 version 17.9 (compiler version 19.39)

These warnings, and all warnings in later versions, are suppressed by using the compiler option **`/Wv:19.39`**.
These warnings, and all warnings in later versions, are suppressed by using the compiler option **`/Wv:19.38`**.

| Warning | Message |
|--|--|
Expand All @@ -116,7 +116,7 @@ These warnings, and all warnings in later versions, are suppressed by using the

## Warnings introduced in Visual Studio 2022 version 17.8 (compiler version 19.38)

These warnings, and all warnings in later versions, are suppressed by using the compiler option **`/Wv:19.38`**.
These warnings, and all warnings in later versions, are suppressed by using the compiler option **`/Wv:19.37`**.

| Warning | Message |
|--|--|
Expand Down