summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2017-03-04 19:19:26 +0000
committerMaxime Coste <mawww@kakoune.org>2017-07-19 08:49:44 +0200
commit609bc24f67e53708d8cb93a070ab58d770e6e001 (patch)
tree930fc9a7193664d222979047c3983f0fe791cec1 /src
parentc19b9d0b8b009a8a864fab890bfab2c745d6662a (diff)
Remove unused function
Diffstat (limited to 'src')
-rw-r--r--src/containers.hh3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/containers.hh b/src/containers.hh
index d5673a28..d49a1d65 100644
--- a/src/containers.hh
+++ b/src/containers.hh
@@ -12,9 +12,6 @@ namespace Kakoune
template<typename Factory>
struct ContainerView { Factory factory; };
-template<typename Factory>
-ContainerView<Factory> make_view(Factory factory) { return {factory}; }
-
template<typename Container, typename Factory>
decltype(auto) operator| (Container&& container, ContainerView<Factory> view)
{