<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">Avoid collisions with std::complex.

--- tapestrea-0.1.0.6/src/rtaudio.h	2009-03-20 19:16:25.000000000 +0000
+++ tapestrea-0.1.0.6/src/rtaudio.h	2025-07-04 20:04:01.725341086 +0100
@@ -70,7 +70,6 @@
 #include "rterror.h"
 #include &lt;string&gt;
 #include &lt;vector&gt;
-using namespace std;
 
 // Operating system dependent thread functionality.
 #if defined(__WINDOWS_DS__) || defined(__WINDOWS_ASIO__)
--- tapestrea-0.1.0.6/src/taps_pvc.cpp	2006-09-29 00:17:32.000000000 +0100
+++ tapestrea-0.1.0.6/src/taps_pvc.cpp	2025-07-04 20:04:01.725497279 +0100
@@ -38,7 +38,6 @@
 #include &lt;assert.h&gt;
 #include &lt;memory.h&gt;
 #include &lt;queue&gt;
-using namespace std;
 
 
 #ifndef TRUE
--- tapestrea-0.1.0.6/src/ui_analysis.cpp	2009-06-02 18:30:32.000000000 +0100
+++ tapestrea-0.1.0.6/src/ui_analysis.cpp	2025-07-04 20:04:01.725807719 +0100
@@ -47,7 +47,7 @@
 
 #include &lt;string&gt;
 #include &lt;iostream&gt;
-using namespace std;
+using std::string;
 
 
 // enumeration for ui elements
--- tapestrea-0.1.0.6/src/ui_scripting.cpp	2008-09-05 20:58:58.000000000 +0100
+++ tapestrea-0.1.0.6/src/ui_scripting.cpp	2025-07-04 20:06:32.174126388 +0100
@@ -60,6 +60,10 @@
   #include &lt;direct.h&gt;
 #endif
 
+using std::map;
+using std::string;
+using std::vector;
+
 // static variables
 ScriptEngine * ScriptCentral::our_engine = NULL;
 std::map&lt;t_TAPUINT, Scriptor *&gt; ScriptCentral::shred_to_scriptor;
--- tapestrea-0.1.0.6/src/ui_search.cpp	2009-06-02 16:41:44.000000000 +0100
+++ tapestrea-0.1.0.6/src/ui_search.cpp	2025-07-04 20:05:26.691228742 +0100
@@ -41,6 +41,8 @@
 #include "taps_regioncomparer.h"
 #include "util_readwrite.h"
 
+using std::string;
+
 // UISearch * g_search_face = NULL;
 
 // enumeration for ui elements
--- tapestrea-0.1.0.6/src/ui_synthesis.cpp	2009-06-02 16:41:49.000000000 +0100
+++ tapestrea-0.1.0.6/src/ui_synthesis.cpp	2025-07-04 20:05:50.840190879 +0100
@@ -48,6 +48,9 @@
 #include "audicle_gfx.h"
 #include "audicle_geometry.h"
 
+using std::string;
+using std::vector;
+
 void clear_timeline_dummies( Timeline * tim ); // before deleting the timeline
 void create_timeline_dummies( Timeline * tim ); // for when a timeline is copied
 void clear_bag_dummies( BagTemplate * bag ); // before deleting a bag
--- tapestrea-0.1.0.6/src/util_readwrite.cpp	2009-06-02 18:30:51.000000000 +0100
+++ tapestrea-0.1.0.6/src/util_readwrite.cpp	2025-07-04 20:04:42.103298552 +0100
@@ -3,6 +3,8 @@
 #include "util_thread.h"
 #include "util_network.h"
 
+using std::ios;
+
 // macros for XMLWriter
 #define RETURN_IF_ERROR(x)	{if((x) == false) return 0;}
 #define MY_ENCODING "ISO-8859-1"
</pre></body></html>