tinyxml2 icon indicating copy to clipboard operation
tinyxml2 copied to clipboard

TinyXML2 is a simple, small, efficient, C++ XML parser that can be easily integrated into other programs.

Results 154 tinyxml2 issues
Sort by recently updated
recently updated
newest added

Hi, The documentation for the ownsership of nodes (in the main page, under features and memory management) states the following: "However, any sub-node of the Document, XMLElement, XMLText, etc, can...

bug

Tinyxml2 does not read the following file properly. %BFMMSS_entities; ] > <TEI> </TEI> It finds: - a declaration: **_**_ - an unknown: **_DOCTYPE TEI [

enhancement

Hi lee thanks for merging the update that I done. Im working on cocos2dx atm which uses tiny xml for its windows 8 platform. Here is a function in the...

enhancement

Android only supports fseeko+ftello (and their 64-bit versions) for API level 24 and above. Tested using: cmake -Bbuild -DCMAKE_TOOLCHAIN_FILE=~/Library/Android/sdk/ndk/26.0.10792818/build/cmake/android.toolchain.cmake -DANDROID_ABI=armeabi-v7a -DANDROID_PLATFORM=android-22 . cmake --build build Failed with: tinyxml2/tinyxml2.cpp:2380:5: error: use...

Hi, `Error()` returns false for such simple case: ``` ``` There is no starting tag for top level one. Then, in such case: ``` tinyxml2::XMLDocument document; document.Parse(xmlString.c_str()); ``` `document.RootElement();` returns...

The format "%x" is treated as an unsigned int by the GCC compiler. Use static_cast to cast the error to an unsigned int to match the "%x" type. Additionally, replace...

The 'callfopen' function, used for opening files, is now wrapped with the 'TINYXML2_FILE_SUPPORT' preprocessor directive. This change aligns with the usage in 'LoadFile' and 'SaveFile' functions, which are also wrapped...

Are there somewhere versions older than version 2.0.1? On one embedded device with the previous version of the company project, I have a file libtinyxml2.so.0.0.0 with the last modification date...

Hi, Could you add a porting guide from tinyxml 1 ? Thanks Bastien

The commit https://github.com/leethomason/tinyxml2/commit/cc4c1df7ec28101eaacc6388cd8a0a857bffd297 caused a huge change in how DLLs are built on MinGW. Previously, `#ifdef _WIN32` was used to check for Windows, and then `__declspec(dllexport)` and `__declspec(dllimport)` were used...