summaryrefslogtreecommitdiff
path: root/games/dangerdeep/files/patch-src_coastmap.h
blob: b71f6a5a6517124d2afc99ca38305515e970ee97 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- src/coastmap.h.orig	2020-03-29 09:04:12 UTC
+++ src/coastmap.h
@@ -151,7 +151,7 @@ class coastmap
 	void process_coastline(int x, int y);
 	void process_segment(int x, int y);
 
-	class worker : public thread
+	class worker : public ::thread
 	{
 		coastmap& cm;
 	public:
@@ -163,7 +163,7 @@ class coastmap
 		}
 	};
 
-	thread::auto_ptr<worker> myworker;
+	::thread::auto_ptr<worker> myworker;
 	void construction_threaded();
 
 public: