This works fine on gcc version egcs-2.91.66 19990314 (egcs-1.1.2 release)

Angus

On Fri, 24 Mar 2000, you wrote:
> What compilers that we support do _not_ allow:
> 
> 
> std::vector
> 
> and require that we use
> 
> using std::vector;
> vector;
> 
> small test program:
> 
> #include <vector>
> 
> int main() {
>       std::vector<int> vec;
>       vec.push_back(1);
>       return 0;
> }
> 
>       Lgb

Reply via email to