From: Davin Max Pearson Newsgroups: comp.os.msdos.djgpp Subject: Re: Compiler Abort! on template usage Date: 13 Apr 1998 22:38:39 +1200 Organization: University of Canterbury Lines: 13 Message-ID: References: <35306226 DOT 17D8 AT easystreet DOT com> NNTP-Posting-Host: exti141.tacacs.canterbury.ac.nz To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk Al Christians writes: > > I've found that djgpp terminates a compile on me with the uninformative > "Abort!" message when I use a statement such as > > vector a(10); Try vector a = vector(10); That should have the effect that you wanted. I had a similar problem to this before.