This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

vector of abstract class


	Using gcc-2.95, this code compiles just fine:

		#include <vector>

		struct S {
			virtual void f() = 0;
		};

		main() {
			vector<S> v;
		}

	I shouldn't be allowed to have a vector of an abstract class,
	should I?

	- Paul


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]