From 6e168e25d6757eb7ddf18d4b678c073f7a387a63 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Tue, 25 Sep 2012 05:44:07 -0400 Subject: [PATCH] rm type alias --- termite.cc | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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; };