summaryrefslogtreecommitdiff
path: root/src/remote.cc
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2015-04-19 18:47:52 +0100
committerMaxime Coste <frrrwww@gmail.com>2015-04-19 18:47:52 +0100
commitddd70fd09adc0c93205bd1b436daace101d773fc (patch)
tree1164df527472908561f95b159c04bdce1f0e21a7 /src/remote.cc
parentf714766854047728a029655bfd7c8af6aea53833 (diff)
Make empty context construction more explicit
Diffstat (limited to 'src/remote.cc')
-rw-r--r--src/remote.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remote.cc b/src/remote.cc
index 27394347..021e1edf 100644
--- a/src/remote.cc
+++ b/src/remote.cc
@@ -580,7 +580,7 @@ private:
{
if (not m_buffer.empty()) try
{
- Context context{};
+ Context context{Context::EmptyContextFlag{}};
CommandManager::instance().execute(m_buffer, context);
}
catch (runtime_error& e)