Remove superfluous TINYXML2_LIB declaration.

PiperOrigin-RevId: 506867694
Change-Id: I701def961046c46f3cffe4fad2b1b9436bc1deef
This commit is contained in:
Saran Tunyasuvunakool
2023-02-03 04:23:53 -08:00
committed by Copybara-Service
parent ffe27d9680
commit 7251e7b900
+2 -2
View File
@@ -46,10 +46,10 @@ using tinyxml2::XMLElement;
// custom XML indentation: 2 spaces rather than the default 4
class TINYXML2_LIB mj_XMLPrinter : public tinyxml2::XMLPrinter {
class mj_XMLPrinter : public tinyxml2::XMLPrinter {
using tinyxml2::XMLPrinter::XMLPrinter;
public:
public:
void PrintSpace( int depth ) {
for (int i=0; i<depth; ++i) {
Write( " " );