Fix builds, missing include

This commit is contained in:
Robin Gareus 2020-04-24 01:53:59 +02:00
parent 2aa5e90290
commit dbcbfd7b5b
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -5,6 +5,7 @@
* Modified for Ardour and released under the same terms.
*/
#include <string.h>
#include <iostream>
#include "pbd/stacktrace.h"
@ -135,7 +136,7 @@ XMLTree::read_buffer (char const* buffer, bool to_tree_doc)
xmlKeepBlanksDefault(0);
doc = xmlParseMemory (buffer, strlen(buffer));
doc = xmlParseMemory (buffer, ::strlen(buffer));
if (!doc) {
return false;
}