mirror of
https://github.com/boostorg/serialization.git
synced 2026-01-23 18:12:09 +00:00
Adjustments for trak tickets - ready for upload as version 1.36.0
[SVN r42282]
This commit is contained in:
@@ -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'"'
|
||||
;
|
||||
|
||||
|
||||
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user