mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-14 12:49:25 +00:00
Add comments for namespace closing braces that are far from their opening statements
This commit is contained in:
parent
fe4beb0197
commit
6e09aa4a06
3 changed files with 7 additions and 6 deletions
|
|
@ -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 &);
|
||||
|
|
|
|||
|
|
@ -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 {};
|
||||
|
|
|
|||
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue