From 8e6cfd3f09c979b36e2b19c101de93526d4998d6 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Sat, 14 Feb 2015 23:28:09 +0000 Subject: [PATCH] Indent fix --- src/scope.hh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/scope.hh b/src/scope.hh index 5cc63b28..dee1956a 100644 --- a/src/scope.hh +++ b/src/scope.hh @@ -14,10 +14,10 @@ class Scope { public: Scope(Scope& parent) - : m_options(parent.options()), - m_hooks(parent.hooks()), - m_keymaps(parent.keymaps()), - m_aliases(parent.aliases()) {} + : m_options(parent.options()), + m_hooks(parent.hooks()), + m_keymaps(parent.keymaps()), + m_aliases(parent.aliases()) {} OptionManager& options() { return m_options; } const OptionManager& options() const { return m_options; }