mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 13:45:43 +01:00
Fix builds, missing include
This commit is contained in:
parent
2aa5e90290
commit
dbcbfd7b5b
1 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue