diff options
author | John Wiegley <johnw@newartisans.com> | 2007-05-21 20:45:13 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 03:39:06 -0400 |
commit | d23ed020abf494a046b499cdce1c0957cd5b4783 (patch) | |
tree | bd9035df62b9ef7cbf77045bb018de8e33270fca /src/utility/utils.cc | |
parent | fdfc37adf948415b6caad55c08e8313abd4e1b1b (diff) | |
download | fork-ledger-d23ed020abf494a046b499cdce1c0957cd5b4783.tar.gz fork-ledger-d23ed020abf494a046b499cdce1c0957cd5b4783.tar.bz2 fork-ledger-d23ed020abf494a046b499cdce1c0957cd5b4783.zip |
Whitespace cleanup.
Diffstat (limited to 'src/utility/utils.cc')
-rw-r--r-- | src/utility/utils.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/utility/utils.cc b/src/utility/utils.cc index e9c41cc9..7ddeb677 100644 --- a/src/utility/utils.cc +++ b/src/utility/utils.cc @@ -143,7 +143,7 @@ inline void add_to_count_map(object_count_map& the_map, std::size_t current_memory_size() { std::size_t memory_size = 0; - + for (object_count_map::const_iterator i = live_memory_count->begin(); i != live_memory_count->end(); i++) @@ -262,7 +262,7 @@ inline void report_count_map(std::ostream& out, object_count_map& the_map) std::size_t current_objects_size() { std::size_t objects_size = 0; - + for (object_count_map::const_iterator i = live_object_count->begin(); i != live_object_count->end(); i++) @@ -617,7 +617,7 @@ void finish_timer(const char * name) if (need_paren) _log_buffer << '('; - + _log_buffer << spent.total_milliseconds() << "ms"; if (need_paren) |