mirror of
https://github.com/polybar/polybar.git
synced 2025-04-07 17:32:38 -04:00
Fix gcc compilation
This commit is contained in:
parent
f7a1949108
commit
d95f9309a9
1 changed files with 2 additions and 2 deletions
|
@ -40,9 +40,9 @@ namespace socket_util {
|
|||
* conn->receive(...);
|
||||
* \endcode
|
||||
*/
|
||||
auto make_unix_connection = [](string&& path) -> unique_ptr<unix_connection> {
|
||||
inline unique_ptr<unix_connection> make_unix_connection(string&& path) {
|
||||
return factory_util::unique<unix_connection>(forward<string>(path));
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
POLYBAR_NS_END
|
||||
|
|
Loading…
Add table
Reference in a new issue