I saw this post on SO: Is there a way of disabling the old c style casts in c++, and was excited to apply -Wold-style-cast to my Android C++ code. I quickly ran into the following casts in stdio.h:
static __inline int __sputc(int _c, FILE *_p) {
if (--_p->_w >= 0 || (_p->_w >= _p->_lbfsize && (char)_c != '\n'))
return (*_p->_p++ = _c);
else
return (__swbuf(_c, _p));
}
The file stdio.h was included through a series of other includes starting from ostream. Should C++ library headers include C headers that do C style casts? Has anyone tried disabling C style casts under Android NDK?
<cstring>and<cstdlib>). Surely an implementation should be allowed to include the C library headers, or would you prefer a complete rewrite? – Kerrek SB Jun 25 '11 at 15:00static_cast, so why not just live and let live? – Kerrek SB Jun 25 '11 at 15:13