From: Jason Green Newsgroups: comp.os.msdos.djgpp Subject: Re: Better support for namespaces Date: Mon, 17 Apr 2000 23:13:05 +0100 Organization: Customer of Planet Online Lines: 38 Message-ID: References: <8df8n5$2jb$1 AT news DOT lth DOT se> NNTP-Posting-Host: modem-106.effexor.dialup.pol.co.uk Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: newsg3.svr.pol.co.uk 956010344 1628 62.136.91.234 (17 Apr 2000 22:25:44 GMT) NNTP-Posting-Date: 17 Apr 2000 22:25:44 GMT X-Complaints-To: abuse AT theplanet DOT net X-Newsreader: Forte Agent 1.7/32.534 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com "Niklas Pettersson" wrote: > Any solution to this or is there a new version on the way? Ask this to gcc-bugs AT gcc DOT gnu DOT org (and let us know what you find out ;) > Another thing.. Shouldn't there be manipulators "left" and "right" in the > STL? (according to the Standard C++ document) Yes, maybe you missed my reply the last time you asked this: There is a left manipulator defined in the standard, but it is not yet implemented in GCC. As a workaround, it is possible to define your own version: /* ------------------------------------------------ */ #include #include using namespace std; ios& left(ios& i) { i.setf(ios::left, ios::adjustfield); return i; } int main() { cout << left << setw(50) << "Hello world"; } /* ------------------------------------------------ */ Missing features of have been reported here before. But DJGPP does not provide the C++ implementation so these problems should be reported to the relevant GCC group. Given the fundamental nature of the problems, (and the apparently easy fix), it is probably already being worked on. If you ask in a GCC group you might get some some idea of when these features will be implemented.