Skip to content

Commit

Permalink
fixup bd0688d
Browse files Browse the repository at this point in the history
Doxygen comments gone wild O_o
  • Loading branch information
cbeck88 committed Jun 25, 2014
1 parent bd0688d commit bf51076
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fake_unit_manager.hpp
Expand Up @@ -37,14 +37,14 @@ class fake_unit_manager {
typedef std::deque<internal_ptr_type>::const_iterator iterator;
typedef std::deque<internal_ptr_type>::const_iterator const_iterator;

iterator begin() { return fake_units_.begin(); }
iterator begin() { return fake_units_.begin(); }
iterator end() { return fake_units_.end(); }

const_iterator begin() const { return fake_units_.begin(); }
const_iterator end() const { return fake_units_.end(); }

private:
/** Register a unit with this manager. private, should only be called by fake_unit_ptr.
/** Register a unit with this manager. private, should only be called by fake_unit_ptr. */
void place_temporary_unit(internal_ptr_type);

/** Deregister a unit from this manager. private, should only be called by fake_unit_ptr.
Expand Down

0 comments on commit bf51076

Please sign in to comment.