summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorAimee Linden <aimee@lindenlab.com>2010-08-16 16:39:12 +0100
committerAimee Linden <aimee@lindenlab.com>2010-08-16 16:39:12 +0100
commite9f14e3001afa624e9634b55ae9c687b3cca5351 (patch)
tree5ee2fc6e04b9fa60d823404dcd9b69bf41fc584c /indra/llcommon
parent8aae5a105b2e0f221ee074e30008f56697981665 (diff)
VWR-20670 (SNOW-506) FIXED Protection on LLInstanceTracker base in LLEventTimer needs to be public for gcc >4.1
Diffstat (limited to 'indra/llcommon')
-rw-r--r--indra/llcommon/lleventtimer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/lleventtimer.h b/indra/llcommon/lleventtimer.h
index 62586dd92f..7f42623d01 100644
--- a/indra/llcommon/lleventtimer.h
+++ b/indra/llcommon/lleventtimer.h
@@ -33,7 +33,7 @@
#include "lltimer.h"
// class for scheduling a function to be called at a given frequency (approximate, inprecise)
-class LL_COMMON_API LLEventTimer : protected LLInstanceTracker<LLEventTimer>
+class LL_COMMON_API LLEventTimer : public LLInstanceTracker<LLEventTimer>
{
public:
LLEventTimer(F32 period); // period is the amount of time between each call to tick() in seconds