summaryrefslogtreecommitdiff
path: root/src/client_manager.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/client_manager.cc')
-rw-r--r--src/client_manager.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client_manager.cc b/src/client_manager.cc
index bd04b82a..4eeb4f60 100644
--- a/src/client_manager.cc
+++ b/src/client_manager.cc
@@ -110,7 +110,7 @@ WindowAndSelections ClientManager::get_free_window(Buffer& buffer)
{ return &ws.window->buffer() == &buffer; });
if (it == m_free_windows.rend())
- return { make_unique<Window>(buffer), { buffer, Selection{} } };
+ return { std::make_unique<Window>(buffer), { buffer, Selection{} } };
it->window->force_redraw();
WindowAndSelections res = std::move(*it);