Browse Source

Add missing include headers

We need to include cstring and algorithm for memmove and find_if respectively
Victor Luchits 6 years ago
parent
commit
2cab962455
1 changed files with 2 additions and 0 deletions
  1. 2 0
      Include/RmlUi/Core/Types.h

+ 2 - 0
Include/RmlUi/Core/Types.h

@@ -31,7 +31,9 @@
 
 #include <float.h>
 #include <limits.h>
+#include <cstring>
 #include <string>
+#include <algorithm>
 #include <map>
 #include <memory>
 #include <set>