[Offtopic]
Some time ago, Andy Piper wrote...
|+
| BROKEN_CYGWIN refers to b18. I can't really fix it unless I know what the
| new version is going to do. Have no fears I will not leave it if the
| situation changes.
|-
What a lucky people! If I find something that has to be marked as BROKEN_WINDOWS,
I have to wait for *years* before Micorosft will hurry up a bit and fix it.
They urgently fix only security holes.
I have had a define FUCK_THIS_STDC_IMPLEMENTATION in my program for year and a half,
because VC (between 4.1 and 5.0) did not support default template parameters.
Instead of
template <class C, class A = allocator <C> >
class vector...
they had
template <class C, class A>
class vector...
I had to write PEARLS like
map <int, string, less<int>, allocator <pair <int, stirng> > >
At the end, grepping the sources for `FUCK_' revealed current bug list still
unresoved by MS.
Kirill