Browse Source

Merge pull request #59197 from akien-mga/mingw-thorvg-missing-cstring

Rémi Verschelde 3 years ago
parent
commit
7e556178a5
1 changed files with 3 additions and 1 deletions
  1. 3 1
      thirdparty/thorvg/src/loaders/svg/tvgSvgCssStyle.cpp

+ 3 - 1
thirdparty/thorvg/src/loaders/svg/tvgSvgCssStyle.cpp

@@ -22,6 +22,8 @@
 
 #include "tvgSvgCssStyle.h"
 
+#include <cstring>
+
 /************************************************************************/
 /* Internal Class Implementation                                        */
 /************************************************************************/
@@ -183,4 +185,4 @@ void cssApplyStyleToPostponeds(Array<SvgNodeIdPair>& postponeds, SvgNode* style)
             cssCopyStyleAttr(nodeIdPair.node, cssNode);
         }
     }
-}
+}