summaryrefslogtreecommitdiff
path: root/libs/audiographer
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-07-17 08:05:59 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-07-17 08:05:59 -0400
commit650964f3203319b013c49a286b5fc5fc203f3bbb (patch)
tree60b2f879d4ed634f9420a737886086db5eb31f78 /libs/audiographer
parent9cbe231b920d92a2e44e08962a3ed6870b962f34 (diff)
parent780397d0ccf8df54eeb78c88eebbaab0c2745029 (diff)
Merge branch 'master' into windows
Diffstat (limited to 'libs/audiographer')
-rw-r--r--libs/audiographer/audiographer/debug_utils.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/audiographer/audiographer/debug_utils.h b/libs/audiographer/audiographer/debug_utils.h
index 7b9e50124a..693c50064c 100644
--- a/libs/audiographer/audiographer/debug_utils.h
+++ b/libs/audiographer/audiographer/debug_utils.h
@@ -3,6 +3,7 @@
#include "flag_field.h"
+#include <cstdlib>
#include <string>
#ifdef __GNUC__
@@ -25,7 +26,7 @@ struct DebugUtils
char * res = abi::__cxa_demangle (typeid(obj).name(), 0, 0, &status);
if (status == 0) {
std::string s(res);
- free (res);
+ std::free (res);
return s;
}
#endif