epoc32/include/stdapis/stlport/config/_epilog.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:33:34 +0100
branchSymbian3
changeset 4 837f303aceeb
parent 0 061f57f2323e
permissions -rw-r--r--
Current Symbian^3 public API header files (from PDK 3.0.h)
This is the epoc32/include tree with the "platform" subtrees removed, and
all but a selected few mbg and rsg files removed.
     1 #if defined (_STLP_MSVC) || defined (__ICL) || defined (__BORLANDC__)
     2 
     3 # if defined (__BORLANDC__)
     4 #  pragma option pop
     5 #  pragma option -w-8062
     6 # else
     7 #  if !(defined (_STLP_MSVC) && (_STLP_MSVC < 1200))
     8 //#   pragma warning (pop)
     9 #  endif
    10 #  pragma pack (pop)
    11 # endif
    12 
    13 
    14 #elif defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
    15 
    16 # pragma reset woff 1174
    17 # pragma reset woff 1375
    18 # pragma reset woff 1209
    19 // from iterator_base.h
    20 # pragma reset woff 1183
    21 
    22 #elif defined(__DECCXX)
    23 
    24 # ifdef __PRAGMA_ENVIRONMENT
    25 #  pragma __environment __restore
    26 # endif
    27 
    28 #elif defined(__IBMCPP__)
    29 
    30 #pragma info(restore)
    31 
    32 #endif
    33