summary refs log tree commit diff
path: root/pkgs/applications/audio/sony-headphones-client/gcc.patch
blob: 31050e4789e72f3204dd52f4032dce4e94b36897 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
diff --git a/SingleInstanceFuture.h b/SingleInstanceFuture.h
index 8af733f..d2e6c49 100644
--- a/SingleInstanceFuture.h
+++ b/SingleInstanceFuture.h
@@ -12,13 +12,13 @@ template <class T>
 class SingleInstanceFuture : public std::future<T>
 {
 public:
-	SingleInstanceFuture<T>() = default;
+	SingleInstanceFuture(void) = default;
 	template<class Func, class... Args>
 	void setFromAsync(Func func, Args&&... args) noexcept(false);
 	bool ready();
 
 private:
-	SingleInstanceFuture<T>(std::future<T> other);
+	SingleInstanceFuture(std::future<T> other);
 	SingleInstanceFuture<T> operator=(std::future<T>& other);
 };