public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* int8_t lives matter
@ 2023-12-22 21:53 Olavi Esker
  2023-12-22 22:03 ` Andrew Pinski
  0 siblings, 1 reply; 3+ messages in thread
From: Olavi Esker @ 2023-12-22 21:53 UTC (permalink / raw)
  To: gcc

[-- Attachment #1: Type: text/plain, Size: 1068 bytes --]

Hello,

#include <iostream>
#include <cstdint>

int main()
{
std::int8_t myInt{65};
myInt += 1;
std::cout << myInt;
}

Guess what this returns?
Character "B".

int main()
{
std::int8_t myInt{};
std::cin >> myInt;
std::cout << myInt;
}
This will also read a character, and
print the characters ascii value.
So if I give it 3, it read it as '3', and prints out 51.


The compiler gives no warning of this whatsoever with the flags:
                "-std=c++20",
                "-pedantic-errors",
                "-Wall",
                "-Wpedantic",
                "-Wshadow",
                "-Wcast-align",
                "-Wlogical-op",
                "-Wno-unused-parameter",
                "-Weffc++",
                "-Wextra",
                "-Wconversion",
                "-Wsign-conversion".


t does seem like a mistake to have `signed char` and `unsigned char`
display as characters rather than numbers, since `char` is a distinct type.
And so `char` could display as a character and the other two as integers.

Wish you can change this.

Thanks.
OE

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-12-23 10:35 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-22 21:53 int8_t lives matter Olavi Esker
2023-12-22 22:03 ` Andrew Pinski
2023-12-23 10:35   ` Jonathan Wakely

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).