Skip to content
This repository has been archived by the owner on Sep 14, 2023. It is now read-only.

Commit

Permalink
Improve comments
Browse files Browse the repository at this point in the history
  • Loading branch information
zimeon committed Aug 5, 2014
1 parent add2ced commit baaf81a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cpp/lib/KeyMap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,11 @@ istream& operator>>(istream& in, keymap& keys)


//===================================================================================
// Take two keymaps and filters out all keys that do not exist in the second keymap
// Takes two keymaps (ks and kf) and add all shared to the a third (kr).
//
// Implememted by interating over all keys in the first keymap and searching for the
// key in the second. Adds to third (kr) if found. In normal use we expect kr to be
// empty when called but this need not be the case.
//
void filterKeymap(keymap& ks, keymap& kf, keymap& kr)
{
Expand Down

0 comments on commit baaf81a

Please sign in to comment.