genericopenlibs/cppstdlib/stl/test/unit/strstream_header_test.cpp
changeset 0 e4d67989cc36
child 18 47c74d1534e1
equal deleted inserted replaced
-1:000000000000 0:e4d67989cc36
       
     1 /* This test purpose is simply to check Standard header independancy that
       
     2  * is to say that the header can be included alone without any previous
       
     3  * include.
       
     4  * Additionnaly, for C Standard headers that STLport expose, it can also be
       
     5  * used to check that files included by those headers are compatible with
       
     6  * pure C compilers.
       
     7  */
       
     8 
       
     9 //Including this fle makes the test STLport specific but this is the only way to check
       
    10 //compiler config:
       
    11 #include <stl/config/features.h>
       
    12 
       
    13 #if !defined (_STLP_USE_NO_IOSTREAMS)
       
    14 #  include <strstream>
       
    15 #endif