~ubuntu-branches/ubuntu/wily/bombono-dvd/wily

« back to all changes in this revision

Viewing changes to libs/boost-lib/boost/regex/v4/regex_traits.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-11-04 11:46:25 UTC
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20101104114625-8xfdhvhpsm51i0nu
Tags: upstream-0.8.0
ImportĀ upstreamĀ versionĀ 0.8.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
#include "boost/mpl/has_xxx.hpp"
57
57
#include <boost/static_assert.hpp>
58
58
 
 
59
#ifdef BOOST_MSVC
 
60
#pragma warning(push)
 
61
#pragma warning(disable: 4103)
 
62
#endif
59
63
#ifdef BOOST_HAS_ABI_HEADERS
60
64
#  include BOOST_ABI_PREFIX
61
65
#endif
 
66
#ifdef BOOST_MSVC
 
67
#pragma warning(pop)
 
68
#endif
62
69
 
63
70
namespace boost{
64
71
 
76
83
// required "standard" ones:
77
84
//
78
85
namespace re_detail{
79
 
#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !BOOST_WORKAROUND(__HP_aCC, BOOST_TESTED_AT(55500))
 
86
#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !BOOST_WORKAROUND(__HP_aCC, < 60000)
80
87
BOOST_MPL_HAS_XXX_TRAIT_DEF(boost_extensions_tag)
81
88
#else
82
89
template<class T>
129
136
{
130
137
   typedef BaseT type;
131
138
};
132
 
#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !BOOST_WORKAROUND(__HP_aCC, BOOST_TESTED_AT(55500))
 
139
#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !BOOST_WORKAROUND(__HP_aCC, < 60000)
133
140
template <class BaseT>
134
141
struct compute_wrapper_base<BaseT, false>
135
142
{
167
174
 
168
175
} // namespace boost
169
176
 
 
177
#ifdef BOOST_MSVC
 
178
#pragma warning(push)
 
179
#pragma warning(disable: 4103)
 
180
#endif
170
181
#ifdef BOOST_HAS_ABI_HEADERS
171
182
#  include BOOST_ABI_SUFFIX
172
183
#endif
 
184
#ifdef BOOST_MSVC
 
185
#pragma warning(pop)
 
186
#endif
173
187
 
174
188
#endif // include
175
189