Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > C++ > forcing a compile time error

Reply
Thread Tools

forcing a compile time error

 
 
Michael Gaab
Guest
Posts: n/a
 
      11-08-2003
How would I force the compiler to throw an error for the following:

function signature -
void foo(short);

function call -
foo('d');

My compiler does not complain when I call foo() with a character argument.
I am assuming that the compiler does some type casting or that char's are
interpreted as a byte. Not exactly sure.

At any rate how do I force the compiler throw a error?

thanks, Mike


 
Reply With Quote
 
 
 
 
Severin Ecker
Guest
Posts: n/a
 
      11-08-2003
> function signature -
> void foo(short);
>
> function call -
> foo('d');
>
> My compiler does not complain when I call foo() with a character argument.

thats because a char(acter) is nothing more than a number (char from -128 to
127 or unsigned char from 0 to 255)

> I am assuming that the compiler does some type casting or that char's are
> interpreted as a byte. Not exactly sure.

there's no much difference to, say implicitly converting a short to a long

> At any rate how do I force the compiler throw a error?

nope, sorry

regards,
sev


 
Reply With Quote
 
 
 
 
Jack Adam
Guest
Posts: n/a
 
      11-08-2003
Michael Gaab wrote:

> function signature -
> void foo(short);
>
> function call -
> foo('d');
>
> My compiler does not complain when I call foo() with a character argument.
> I am assuming that the compiler does some type casting or that char's are
> interpreted as a byte. Not exactly sure.


This is normal. There is an implicit type conversion from char to short
and this is part of the C++ language, not some special compiler feature.

If you want to have different behaviors for function foo depending on
the exact type of the parameter, one solution is to to overload function
foo.

 
Reply With Quote
 
lilburne
Guest
Posts: n/a
 
      11-08-2003
Michael Gaab wrote:
> How would I force the compiler to throw an error for the following:
>
> function signature -
> void foo(short);
>
> function call -
> foo('d');
>
> My compiler does not complain when I call foo() with a character argument.
> I am assuming that the compiler does some type casting or that char's are
> interpreted as a byte. Not exactly sure.
>
> At any rate how do I force the compiler throw a error?
>


The normal way to force a compilation error is to use the
#error preprocessor directive. Why you'd want to cause a
compilation error specifically on foo though is a bit of a
mystery but there are probably a myriad of ways of doing so

foo('d')
foo();
foo(&d);

 
Reply With Quote
 
Michael Kochetkov
Guest
Posts: n/a
 
      11-08-2003

"Jack Adam" <> wrote in message
news:boj7tp$lck$...
> Michael Gaab wrote:
>
> > function signature -
> > void foo(short);
> >
> > function call -
> > foo('d');
> >
> > My compiler does not complain when I call foo() with a character

argument.
> > I am assuming that the compiler does some type casting or that char's

are
> > interpreted as a byte. Not exactly sure.

>
> This is normal. There is an implicit type conversion from char to short
> and this is part of the C++ language, not some special compiler feature.

I am afraid you are wrong. There is not implicit type conversion from char
to short in C++ language. There is the integral promotion from char to int
(or unsigned int) that is not an integral conversion. So, as far as char is
not an integer type, though signed char and unsigned char are integers, it
shall be promoted to int and then converted (integral convertion) to short
to make the foo(short) call.
BTW that is why void foo(int); is better then void foo(short); for foo('d')
call.

--
Michael Kochetkov.


 
Reply With Quote
 
Jack Klein
Guest
Posts: n/a
 
      11-08-2003
On Sat, 8 Nov 2003 17:53:32 +0100, "Severin Ecker" <>
wrote in comp.lang.c++:

> > function signature -
> > void foo(short);
> >
> > function call -
> > foo('d');
> >
> > My compiler does not complain when I call foo() with a character argument.

> thats because a char(acter) is nothing more than a number (char from -128 to
> 127 or unsigned char from 0 to 255)


No, a character is nothing more than a number between CHAR_MIN, which
must be at least -127 if char is signed or 0 if char is unsigned, and
CHAR_MAX which must be at least 127 if char is signed or 255 if char
is unsigned. No C++ implementation is required to support a character
with a value of -128, although some do.

And on one compiler that I use a lot these days, a char can have any
value between -32768 and +32767.

--
Jack Klein
Home: http://JK-Technology.Com
FAQs for
comp.lang.c http://www.eskimo.com/~scs/C-faq/top.html
comp.lang.c++ http://www.parashift.com/c++-faq-lite/
alt.comp.lang.learn.c-c++ ftp://snurse-l.org/pub/acllc-c++/faq
 
Reply With Quote
 
Jack Adam
Guest
Posts: n/a
 
      11-08-2003
Michael Kochetkov wrote:

>>This is normal. There is an implicit type conversion from char to short
>> and this is part of the C++ language, not some special compiler feature.

>
> I am afraid you are wrong. There is not implicit type conversion from char
> to short in C++ language. There is the integral promotion from char to int
> (or unsigned int) that is not an integral conversion. So, as far as char is
> not an integer type, though signed char and unsigned char are integers, it
> shall be promoted to int and then converted (integral convertion) to short
> to make the foo(short) call.



I know. There is one word missing from my statement, which should read:

"There is an implicit type conversion _sequence_ from char to short and
this is part of the C++ language, not some special compiler feature."

Thanks for your errata. Hope that's clear now.

 
Reply With Quote
 
Gianni Mariani
Guest
Posts: n/a
 
      11-08-2003
Michael Gaab wrote:
> How would I force the compiler to throw an error for the following:
>
> function signature -
> void foo(short);
>
> function call -
> foo('d');
>
> My compiler does not complain when I call foo() with a character argument.
> I am assuming that the compiler does some type casting or that char's are
> interpreted as a byte. Not exactly sure.
>
> At any rate how do I force the compiler throw a error?


One technique I use is to create a template and make a
condition in the template to cause a compile time
error when the offending condition is instantiated.


void foo(short);

inline void call_foo( short s )
{
foo( s );
}

template <typename T>
inline void foo(T d)
{
struct compile_error_if_char
{
int array[ 1+ 1 / (sizeof(T)-1) ];
} x;

call_foo( d );
}


int main()
{
short x = 1;

foo( x );

foo('s');

foo( 22 );
}

 
Reply With Quote
 
NFish
Guest
Posts: n/a
 
      11-09-2003
Michael Gaab wrote:

> How would I force the compiler to throw an error for the following:
>
> function signature -
> void foo(short);
>
> function call -
> foo('d');
>
> My compiler does not complain when I call foo() with a character argument.
> I am assuming that the compiler does some type casting or that char's are
> interpreted as a byte. Not exactly sure.
>
> At any rate how do I force the compiler throw a error?
>
> thanks, Mike


~) cat test.cpp
void foo(short) {
}

#define foo(a) (1 / (sizeof(a) == sizeof(short)), (foo)(a))

int main(void) {
foo('d');
return 0;
}

~ ) c++ test.cpp
test.cpp: In function `int main()':
test.cpp:7: warning: division by zero in `1 / 0'

 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: Forcing compile-time error Stargazer C Programming 3 06-12-2010 01:12 PM
How to compile the following source code in VC6// I have error inVC++6 but compile ok in GCC fAnSKyer C++ 2 06-07-2009 07:57 AM
computation at compile time i.e. compile time functions usingtemplates Carter C++ 2 03-04-2009 06:43 PM
cant compile on linux system.cant compile on cant compile onlinux system. Nagaraj C++ 1 03-01-2007 11:18 AM
Forcing Exception Catching At Compile Time Bryan Bullard C++ 17 01-11-2004 06:02 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57