vote up 2 vote down star

In C the following horror is valid:

myFunc()
{
  return 42;  // return type defaults to int.
}

But, what about in C++? I can't find a reference to it either way...

My compiler (Codegear C++Builder 2007) currently accepts it without warning, but I've had comments that this is an error in C++.

flag

71% accept rate
Which compiler is that? I've never encountered one that accepted it. – jalf Dec 1 '08 at 15:28
CG2007 - added in Question. – Roddy Dec 1 '08 at 16:43

5 Answers

vote up 15 vote down check

It's ill-formed in C++. Meaning that it doesn't compile with a standard conforming compiler. Paragraph 7.1.5/4 in Annex C of the Standard explains the change "Banning implicit int".

link|flag
For example if you compile with g++, be sure to have the -W -Wall flags to have the warning, or -pedantic to have it as an error. – Piotr Lesnicki Dec 1 '08 at 15:34
you are walking encyclopedia of C/C++ standard :) – Ilya Dec 1 '08 at 15:36
Ilya, i wish i were. i just own a copy of it hehe :) – Johannes Schaub - litb Dec 1 '08 at 15:39
vote up 0 vote down

As posted, it is ill-formed. MSVC 8 gives the following error:

error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
link|flag
vote up 4 vote down

So, it's definitely 'ill formed' C++, but it seems many compilers accept it with a warning at best.

  • Codegear C++Builder 2007: No error or warning at all
  • G++: Requires -W -Wall to generate warning , or -pedantic to generate error (Piotr)
  • MSVC 8: produces an error (tfinniga)
  • others...?

Please add to/correct this list!

link|flag
vote up 2 vote down

This is not legal C++, but some compilers will accept it either silently or with a diagnostic.

link|flag
vote up 7 vote down

Implicit return types are valid in C89, but a lot of compilers warn about it.

They are not valid in C++, nor in C99.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.