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

« back to all changes in this revision

Viewing changes to libs/boost-lib/boost/regex/v4/regex_merge.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:
24
24
 
25
25
namespace boost{
26
26
 
 
27
#ifdef BOOST_MSVC
 
28
#pragma warning(push)
 
29
#pragma warning(disable: 4103)
 
30
#endif
27
31
#ifdef BOOST_HAS_ABI_HEADERS
28
32
#  include BOOST_ABI_PREFIX
29
33
#endif
 
34
#ifdef BOOST_MSVC
 
35
#pragma warning(pop)
 
36
#endif
30
37
 
31
38
template <class OutputIterator, class Iterator, class traits, class charT>
32
39
inline OutputIterator regex_merge(OutputIterator out,
68
75
   return regex_replace(s, e, fmt, flags);
69
76
}
70
77
 
 
78
#ifdef BOOST_MSVC
 
79
#pragma warning(push)
 
80
#pragma warning(disable: 4103)
 
81
#endif
71
82
#ifdef BOOST_HAS_ABI_HEADERS
72
83
#  include BOOST_ABI_SUFFIX
73
84
#endif
 
85
#ifdef BOOST_MSVC
 
86
#pragma warning(pop)
 
87
#endif
74
88
 
75
89
} // namespace boost
76
90