diff --git a/termite.cc b/termite.cc index d9aea5a..83a7c40 100644 --- a/termite.cc +++ b/termite.cc @@ -16,9 +16,6 @@ using namespace std::placeholders; -template -using g_unique_ptr = std::unique_ptr; - enum class overlay_mode { hidden, search, @@ -45,7 +42,7 @@ struct select_info { struct url_data { url_data(char *u, long c, long r) : url(u, g_free), col(c), row(r) {} - g_unique_ptr url; + std::unique_ptr url; long col, row; };