~ubuntu-branches/ubuntu/dapper/boost/dapper

« back to all changes in this revision

Viewing changes to boost/archive/impl/text_iarchive_impl.ipp

  • Committer: Bazaar Package Importer
  • Author(s): Domenico Andreoli, Christophe Prud'homme, Domenico Andreoli
  • Date: 2006-01-11 11:11:42 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20060111111142-xy6z1i5himlgu8iw
Tags: 1.33.1-2
[ Christophe Prud'homme ]
* Bug fix: "libboost-wave-dev: Dependency on libboost-filesystem-dev
  missing", thanks to Martin v . Löwis (Closes: #346367).

[ Domenico Andreoli ]
* boost/graph/topological_sort.hpp: removed name of unused parameter
  to prevent long compiler warning.  Closes: #347519.
* Applied patch from upstream CVS to fix parsing of valid options
  with a common root.  Closes: #345714.
* libboost-python-dev now correctly depends on python2.4-dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
92
92
#endif // BOOST_NO_CWCHAR
93
93
 
94
94
template<class Archive>
 
95
BOOST_ARCHIVE_DECL(void)
 
96
text_iarchive_impl<Archive>::load_override(class_name_type & t, int){
 
97
    basic_text_iarchive<Archive>::load_override(t, 0);
 
98
}
 
99
 
 
100
template<class Archive>
 
101
BOOST_ARCHIVE_DECL(void)
 
102
text_iarchive_impl<Archive>::init(){
 
103
    basic_text_iarchive<Archive>::init();
 
104
}
 
105
 
 
106
template<class Archive>
95
107
BOOST_ARCHIVE_DECL(BOOST_PP_EMPTY()) 
96
108
text_iarchive_impl<Archive>::text_iarchive_impl(
97
109
    std::istream & is,