git://developer.intra2net.com
/
libi2ncommon
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
f4fcef6
)
Use std::vector instead of std::list for active ScopeTracker management (we just...
author
Thomas Jarosch
<thomas.jarosch@intra2net.com>
Fri, 15 Jul 2011 14:59:11 +0000 (16:59 +0200)
committer
Thomas Jarosch
<thomas.jarosch@intra2net.com>
Thu, 22 Sep 2011 14:26:37 +0000 (16:26 +0200)
src/tracefunc.cpp
patch
|
blob
|
blame
|
history
diff --git
a/src/tracefunc.cpp
b/src/tracefunc.cpp
index
368559c
..
54a924c
100644
(file)
--- a/
src/tracefunc.cpp
+++ b/
src/tracefunc.cpp
@@
-20,7
+20,7
@@
on this file might be covered by the GNU General Public License.
/** @file
* @brief implementation of tracing functionality.
*
- * @copyright © Copyright 2008 by Intra2net AG
+ * @copyright © Copyright 2008,2011 by Intra2net AG
*
* Every thread gets its' own ScopeTracker stack via TLS (thread local storage)
*
@@
-43,7
+43,7
@@
using Logger::GlobalLogger;
class PerThreadContainer
{
public:
- typedef std::list< ScopeTracker* > ScopeTrackerList;
+ typedef std::vector< ScopeTracker* > ScopeTrackerList;
/// List of currently active scope trackers
ScopeTrackerList scope_tracker_list;