Skip to content

Commit e4dd293

Browse files
authored
Update compiler-warning-levels-3-and-4-c4244.md
fix link
1 parent c0fab1c commit e4dd293

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/error-messages/compiler-warnings/compiler-warning-levels-3-and-4-c4244.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ int main() {
3636
```
3737
3838
For more information, see [Usual Arithmetic Conversions](../../c-language/usual-arithmetic-conversions.md).\
39-
For more information about setting the warning level in Visual Studio, see[To set the compiler options in the Visual Studio development environment](../build/reference/compiler-option-warnings-level#to-set-the-compiler-options-in-the-visual-studio-development-environment.md)
39+
For more information about setting the warning level in Visual Studio, see [To set the compiler options in the Visual Studio development environment](../../build/reference/compiler-option-warning-level.md#to-set-the-compiler-options-in-the-visual-studio-development-environment)
4040
4141
```cpp
4242
// C4244_level3.cpp
@@ -50,7 +50,7 @@ int main() {
5050
}
5151
```
5252

53-
Warning C4244 can occur when building code for 64-bit targets that does not generate the warning when building for 32-bit targets. For example, a pointer is a 32-bit quantity on 32-bit platforms, but a 64-bit quantity on 64-bit platforms.
53+
Warning C4244 can occur when building code for 64-bit targets that does not generate the warning when building for 32-bit targets. For example, pointer arithmetic results in a 32-bit quantity on 32-bit platforms, but a 64-bit quantity on 64-bit platforms.
5454

5555
The following sample generates C4244 when compiled for 64-bit targets:
5656

0 commit comments

Comments
 (0)