Adjustments for trak tickets - ready for upload as version 1.36.0

[SVN r42282]
This commit is contained in:
Robert Ramey
2007-12-25 00:08:55 +00:00
parent 68a7c244c8
commit 2dafda2af0
2 changed files with 4 additions and 5 deletions

View File

@@ -29,6 +29,7 @@
#include <boost/io/ios_state.hpp>
#include <boost/throw_exception.hpp>
#include <boost/archive/impl/basic_xml_grammar.hpp>
#include <boost/archive/xml_archive_exception.hpp>
#include <boost/archive/basic_xml_archive.hpp>
#include <boost/archive/iterators/xml_unescape.hpp>
@@ -269,7 +270,7 @@ basic_xml_grammar<CharType>::basic_xml_grammar(){
;
// refactoring to workaround template depth on darwin
CharDataChars = *(anychar_p - chset_p(L"&<"));
CharDataChars = +(anychar_p - chset_p(L"&<"));
CharData =
CharDataChars [
xml::append_string<
@@ -305,7 +306,7 @@ basic_xml_grammar<CharType>::basic_xml_grammar(){
content =
L"<" // should be end_p
| (Reference | CharData) >> content
| +(Reference | CharData) >> L"<"
;
ClassIDAttribute =
@@ -368,7 +369,7 @@ basic_xml_grammar<CharType>::basic_xml_grammar(){
Name
>> Eq
>> L'"'
>> CharData
>> !CharData
>> L'"'
;

View File

@@ -19,8 +19,6 @@
#include <boost/config.hpp> // msvc needs this to suppress warning
#include "bidirectional_map.hpp"
#include <cstring>
#if defined(BOOST_NO_STDC_NAMESPACE)
namespace std{ using ::strcmp; }