From 14c94fabde9c310bab7119a14742cf203be0c8bf Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Sun, 23 Nov 2014 13:41:45 +0100 Subject: [PATCH] Add missing return value for ReplCommand::Run refs #7805 --- lib/cli/replcommand.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/cli/replcommand.cpp b/lib/cli/replcommand.cpp index 5e71f0a92..29e3c7074 100644 --- a/lib/cli/replcommand.cpp +++ b/lib/cli/replcommand.cpp @@ -94,4 +94,6 @@ int ReplCommand::Run(const po::variables_map& vm, const std::vector delete expr; } + + return 0; }