public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* C++ - compilation error for all implicit conversion
@ 2018-03-05  7:42 Satya Prakash Prasad
  2018-03-05  8:08 ` Liu Hao
  0 siblings, 1 reply; 5+ messages in thread
From: Satya Prakash Prasad @ 2018-03-05  7:42 UTC (permalink / raw)
  To: gcc

Is there a compiler flag that logs warning / error in case of any implicit
conversions - like int32_t to uint32_t.

#include <cstdint>
#include <iostream>

using ::std::int32_t;
using ::std::uint32_t;

int main(int argc, char *argv[])
{
   int32_t x = 9;
    uint32_t i = x;
   uint32_t i1 = socketread(...); // returns  int32_t  -1 on error and >0
on success
    std::cout << " " << x << " " << i << std::flush << std::endl;
    return 0;
}
c++ -std=c++11 -Wall -Wconversion -Wpedantic cast.cpp

I get no issues / warning / error during compilation - is there a way it
can achieved.

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

end of thread, other threads:[~2018-03-05  8:34 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-05  7:42 C++ - compilation error for all implicit conversion Satya Prakash Prasad
2018-03-05  8:08 ` Liu Hao
2018-03-05  8:17   ` Satya Prakash Prasad
2018-03-05  8:30     ` Liu Hao
2018-03-05  8:34       ` Satya Prakash Prasad

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).