Skip to content

Commit 59c2423

Browse files
committed
Learn Editor: Update compiler-warning-level-3-c4334.md
1 parent cc18e22 commit 59c2423

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/error-messages/compiler-warnings/compiler-warning-level-3-c4334.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.assetid: d845857f-bc95-4faf-a079-626a0cf935ba
1010

1111
'operator' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?)
1212

13-
The result of 32-bit shift was converted to 64-bits, and the compiler suspects that a 64-bit shift was intended. To resolve this warning, either use 64-bit shift, or explicitly cast the shift result to 32-bit to make the intention clear.
13+
The result of 32-bit shift was converted to 64-bits, and the compiler suspects that a 64-bit shift was intended. To resolve this warning, either use 64-bit shift, or cast the shift result to 32-bit to make it clear to the compiler that a 32-bit shift was intended.
1414

1515
## Example
1616

0 commit comments

Comments
 (0)