mirror of
				https://github.com/VCMP-SqMod/SqMod.git
				synced 2025-11-04 08:17:19 +01:00 
			
		
		
		
	Updated PUGIXML.
This commit is contained in:
		@@ -72,6 +72,15 @@
 | 
				
			|||||||
#	endif
 | 
					#	endif
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					// If C++ is 2011 or higher, add 'override' qualifiers
 | 
				
			||||||
 | 
					#ifndef PUGIXML_OVERRIDE
 | 
				
			||||||
 | 
					#	if __cplusplus >= 201103
 | 
				
			||||||
 | 
					#		define PUGIXML_OVERRIDE override
 | 
				
			||||||
 | 
					#	else
 | 
				
			||||||
 | 
					#		define PUGIXML_OVERRIDE
 | 
				
			||||||
 | 
					#	endif
 | 
				
			||||||
 | 
					#endif
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Character interface macros
 | 
					// Character interface macros
 | 
				
			||||||
#ifdef PUGIXML_WCHAR_MODE
 | 
					#ifdef PUGIXML_WCHAR_MODE
 | 
				
			||||||
#	define PUGIXML_TEXT(t) L ## t
 | 
					#	define PUGIXML_TEXT(t) L ## t
 | 
				
			||||||
@@ -273,7 +282,7 @@ namespace pugi
 | 
				
			|||||||
		// Construct writer from a FILE* object; void* is used to avoid header dependencies on stdio
 | 
							// Construct writer from a FILE* object; void* is used to avoid header dependencies on stdio
 | 
				
			||||||
		xml_writer_file(void* file);
 | 
							xml_writer_file(void* file);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		virtual void write(const void* data, size_t size);
 | 
							virtual void write(const void* data, size_t size) PUGIXML_OVERRIDE;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	private:
 | 
						private:
 | 
				
			||||||
		void* file;
 | 
							void* file;
 | 
				
			||||||
@@ -288,7 +297,7 @@ namespace pugi
 | 
				
			|||||||
		xml_writer_stream(std::basic_ostream<char, std::char_traits<char> >& stream);
 | 
							xml_writer_stream(std::basic_ostream<char, std::char_traits<char> >& stream);
 | 
				
			||||||
		xml_writer_stream(std::basic_ostream<wchar_t, std::char_traits<wchar_t> >& stream);
 | 
							xml_writer_stream(std::basic_ostream<wchar_t, std::char_traits<wchar_t> >& stream);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		virtual void write(const void* data, size_t size);
 | 
							virtual void write(const void* data, size_t size) PUGIXML_OVERRIDE;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	private:
 | 
						private:
 | 
				
			||||||
		std::basic_ostream<char, std::char_traits<char> >* narrow_stream;
 | 
							std::basic_ostream<char, std::char_traits<char> >* narrow_stream;
 | 
				
			||||||
@@ -1214,7 +1223,7 @@ namespace pugi
 | 
				
			|||||||
		explicit xpath_exception(const xpath_parse_result& result);
 | 
							explicit xpath_exception(const xpath_parse_result& result);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		// Get error message
 | 
							// Get error message
 | 
				
			||||||
		virtual const char* what() const throw();
 | 
							virtual const char* what() const throw() PUGIXML_OVERRIDE;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
		// Get parse result
 | 
							// Get parse result
 | 
				
			||||||
		const xpath_parse_result& result() const;
 | 
							const xpath_parse_result& result() const;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user