From fe6a6ca93b75e4f1f7638b1f5e89d24e0012d051 Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Sat, 3 Apr 2021 12:31:03 -0400 Subject: [PATCH] compatibility: Explicitly specify template type to support older compilers This makes curret development branch buildable on Ubuntu 18 / Centos 7 / SUSE 15. --- src/commands/CmdContext.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/CmdContext.cpp b/src/commands/CmdContext.cpp index 4bb446c33..42f8b6f9c 100644 --- a/src/commands/CmdContext.cpp +++ b/src/commands/CmdContext.cpp @@ -123,7 +123,7 @@ std::vector CmdContext::getContexts () contexts.insert (suffix); } - return std::vector (contexts.begin (), contexts.end ()); + return std::vector (contexts.begin (), contexts.end ()); } ////////////////////////////////////////////////////////////////////////////////