Fix optimized linkage

This commit is contained in:
Maxime Coste 2015-10-23 09:49:06 +01:00
parent da7fc3311f
commit 1ba37bacd8

View File

@ -65,7 +65,7 @@ class CommandManager : public Singleton<CommandManager>
{ {
public: public:
void execute(StringView command_line, Context& context, void execute(StringView command_line, Context& context,
const ShellContext& shell_context = {}); const ShellContext& shell_context = ShellContext{});
Completions complete(const Context& context, CompletionFlags flags, Completions complete(const Context& context, CompletionFlags flags,
StringView command_line, ByteCount cursor_pos); StringView command_line, ByteCount cursor_pos);
@ -109,7 +109,7 @@ private:
}; };
String expand(StringView str, const Context& context, String expand(StringView str, const Context& context,
const ShellContext& shell_context = {}); const ShellContext& shell_context = ShellContext{});
} }