History log of /ndk/sources/cxx-stl/stlport/stlport/stl/_istream.c
Revision Date Author Comments
4f54b317d6b14d3324871f2256b59b33174e59c9 08-Apr-2013 Andrew Hsieh <andrewhsieh@google.com> Fix stlport _STLP_STATIC_ASSERT with GCC 4.8

_STLP_STATIC_ASSERT(expr) causes compile-time assert when expr
is false, by doing "typedef char __static_assert[expr ? 1 : -1]"
It works prior GCC 4.8 but now -Wunused-local-typedefs is enabled
by -Wall in 4.8, and fail to compile webrtc and boost with -Werror

Add __attribute__((unused)) in features.h and remove unused local
typedef in _istream.c

Add a testcase

Change-Id: Ie63f416527db5aba1a592569d2a2a4ed87f082ef
2ca50e007226d9d571c94aec476ef5fdf8c4d3fd 02-Dec-2010 David 'Digit' Turner <digit@google.com> Move stlport under sources/cxx-stl/

Move the STLport directory from sources/android/stlport/ to
sources/cxx-stl/stlport/ since we don't document it as an import
module anymore (use APP_STL in your Application.mk to use it instead).

+ Update the documentation under docs/CPLUSPLUS-SUPPORT.html
and sources/cxx-stl/stlport/README

+ Remove obsolete docs/STL-SUPPORT.html (replaced by CPLUSPLUS-SUPPORT.html)

Change-Id: Ie49e2fbeaceb02b0b765336d4a641e8149446711