Fix gcc compilation
This commit is contained in:
parent
f016b99e08
commit
78b5f88c5f
@ -40,9 +40,9 @@ namespace socket_util {
|
|||||||
* conn->receive(...);
|
* conn->receive(...);
|
||||||
* \endcode
|
* \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));
|
return factory_util::unique<unix_connection>(forward<string>(path));
|
||||||
};
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
POLYBAR_NS_END
|
POLYBAR_NS_END
|
||||||
|
Loading…
Reference in New Issue
Block a user