* ld-cdtest/cdtest-foo.h (class Foo): Declare len to be int to

avoid compiler warning.
	* ld-srec/sr3.cc (class Foo): Likewise.
This commit is contained in:
Ian Lance Taylor
1997-11-12 19:20:11 +00:00
parent cfcbe03ff7
commit df1859da76

View File

@ -0,0 +1,24 @@
// Class Foo
#pragma interface
#define FOOLISH_NUMBER -4711
#ifndef FOO_MSG_LEN
#define FOO_MSG_LEN 80
#endif
class Foo {
static int foos;
int i;
const int len = FOO_MSG_LEN;
char message[len];
public:
static void init_foo ();
static int nb_foos() { return foos; }
Foo();
Foo( char* message);
Foo(const Foo&);
Foo & operator= (const Foo&);
~Foo ();
};