aboutsummaryrefslogtreecommitdiff
path: root/audio/csound6/files/patch-frontends__CsoundAC__ChordSpace.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'audio/csound6/files/patch-frontends__CsoundAC__ChordSpace.hpp')
-rw-r--r--audio/csound6/files/patch-frontends__CsoundAC__ChordSpace.hpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/audio/csound6/files/patch-frontends__CsoundAC__ChordSpace.hpp b/audio/csound6/files/patch-frontends__CsoundAC__ChordSpace.hpp
deleted file mode 100644
index d67972d5fd85..000000000000
--- a/audio/csound6/files/patch-frontends__CsoundAC__ChordSpace.hpp
+++ /dev/null
@@ -1,19 +0,0 @@
---- frontends/CsoundAC/ChordSpace.hpp.orig 2015-04-25 19:06:23 UTC
-+++ frontends/CsoundAC/ChordSpace.hpp
-@@ -29,6 +29,7 @@
- #include <climits>
- #include <cmath>
- #include <cstdarg>
-+#include <cstdio>
- #include <eigen3/Eigen/Dense>
- #include "Event.hpp"
- #include <iostream>
-@@ -554,7 +555,7 @@ public:
- char buffer[0x1000];
- std::stringstream stream;
- for (size_t voice = 0; voice < voices(); ++voice) {
-- std::snprintf(buffer, 0x100, "%12.7f", getPitch(voice));
-+ snprintf(buffer, 0x100, "%12.7f", getPitch(voice));
- if (voice > 0) {
- stream << " ";
- }