aboutsummaryrefslogtreecommitdiffstats
path: root/libtests/qintc.cc
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2023-05-20 20:13:09 +0200
committerJay Berkenbilt <ejb@ql.org>2023-05-20 20:52:19 +0200
commitd740c6ccced02147f84a39d5e5f0984d12bac6cb (patch)
tree143a1ad44c281e69cc3c07d96ae694edfe098c8f /libtests/qintc.cc
parent5f02c7c9e779a761b8324427c39e85429e25ba29 (diff)
downloadqpdf-d740c6ccced02147f84a39d5e5f0984d12bac6cb.tar.zst
Rerun format_code (after merging clang-tidy PR)
Diffstat (limited to 'libtests/qintc.cc')
-rw-r--r--libtests/qintc.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/libtests/qintc.cc b/libtests/qintc.cc
index 5b985644..52a1e91e 100644
--- a/libtests/qintc.cc
+++ b/libtests/qintc.cc
@@ -69,11 +69,11 @@ try_range_check_subtract_real(
int
main()
{
- uint32_t u1 = 3141592653U; // Too big for signed type
- int32_t i1 = -1153374643; // Same bit pattern as u1
- uint64_t ul1 = 1099511627776LL; // Too big for 32-bit
- uint64_t ul2 = 12345; // Fits into 32-bit
- int32_t i2 = 81; // Fits in char and uchar
+ uint32_t u1 = 3141592653U; // Too big for signed type
+ int32_t i1 = -1153374643; // Same bit pattern as u1
+ uint64_t ul1 = 1099511627776LL; // Too big for 32-bit
+ uint64_t ul2 = 12345; // Fits into 32-bit
+ int32_t i2 = 81; // Fits in char and uchar
auto c1 = static_cast<signed char>('\xf7'); // Signed value when char
char c2 = 'W'; // char; may be signed or unsigned