The tc needs to be protected instead of private so that the CpuEventWrapper can access it.

--HG--
extra : convert_revision : bd836d63ac3630b20dda552e7b289730f3c114ef
This commit is contained in:
Gabe Black 2006-11-03 11:05:56 -05:00
parent 29a79acb7c
commit 4a5cb3f425

View file

@ -44,7 +44,7 @@ class ThreadContext;
* */
class CpuEvent : public Event
{
private:
protected:
/** type of global list of cpu events. */
typedef std::vector<CpuEvent *> CpuEventList;