Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/serialization/src/stl_port.cpp @ 12

Last change on this file since 12 was 12, checked in by landauf, 17 years ago

added boost

File size: 1.2 KB
Line 
1/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
2// stl_port.cpp: implementation of run-time casting of void pointers
3
4// (C) Copyright 2005 Robert Ramey - http://www.rrsd.com .
5// Use, modification and distribution is subject to the Boost Software
6// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
7// http://www.boost.org/LICENSE_1_0.txt)
8
9//  See http://www.boost.org for updates, documentation, and revision history.
10
11#if (defined _MSC_VER) && (_MSC_VER == 1200)
12# pragma warning (disable : 4786) // too long name, harmless warning
13#endif
14
15// this befuddles the msvc 6 compiler so we can't use it
16#if ! ((defined _MSC_VER) && (_MSC_VER <= 1300)) \
17&&  ! defined(__BORLANDC__)
18
19#include <boost/config.hpp>
20
21#if defined(__SGI_STL_PORT)
22#if defined(_STLPORT_VERSION) && (_STLPORT_VERSION < 0x500)
23
24#include <boost/archive/codecvt_null.hpp>
25
26// explicit instantiation
27
28namespace std {
29
30template
31locale::locale(
32    const locale& __loc, boost::archive::codecvt_null<char> * __f
33);
34
35template
36locale::locale(
37    const locale& __loc, boost::archive::codecvt_null<wchar_t> * __f
38);
39
40} // namespace std
41
42#endif
43#endif
44
45#endif
Note: See TracBrowser for help on using the repository browser.