Add comments for namespace closing braces that are far from their opening statements

This commit is contained in:
Tim Eves 2018-11-07 05:15:25 +07:00
parent fe4beb0197
commit 6e09aa4a06
3 changed files with 7 additions and 6 deletions

View file

@ -23,8 +23,8 @@ namespace kbp
// efficient data structure such as a ring buffer or bounded queue.
using context = std::list<km_kbp_context_item>;
}
}
} // namespace kbp
} // namespace km
json & operator << (json &, km::kbp::context const &);
json & operator << (json &, km_kbp_context_item const &);

View file

@ -40,7 +40,8 @@ namespace kbp
};
json & operator << (json &, km::kbp::keyboard const &);
}
}
} // namespace kbp
} // namespace km
struct km_kbp_keyboard : public km::kbp::keyboard {};

View file

@ -47,8 +47,8 @@ state::state(kbp::keyboard const & kb, km_kbp_option_item const * env)
: _options(kb.default_options, env), _kb(kb)
{}
}
}
} // namespace kbp
} // namespace km
struct km_kbp_state : public km::kbp::state
{