summaryrefslogtreecommitdiff
path: root/indra/llcommon/llsingleton.h
diff options
context:
space:
mode:
authorRichard Linden <none@none>2013-04-24 17:44:34 -0700
committerRichard Linden <none@none>2013-04-24 17:44:34 -0700
commit5622a47403443fb7b4b459fac1b0206deb2eadb3 (patch)
tree397f52bfc5cebbb0b2fcaf291fdd41e1e5d64128 /indra/llcommon/llsingleton.h
parent98161b566d6fa16ae67a48c98b8b087b0ad8d694 (diff)
BUILDFIX: method name was wrong
Diffstat (limited to 'indra/llcommon/llsingleton.h')
-rw-r--r--indra/llcommon/llsingleton.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llsingleton.h b/indra/llcommon/llsingleton.h
index 697d1b042a..e3b614cf86 100644
--- a/indra/llcommon/llsingleton.h
+++ b/indra/llcommon/llsingleton.h
@@ -153,7 +153,7 @@ public:
static DERIVED_TYPE* getIfExists()
{
- SingletonInstanceData& data = getData();
+ SingletonInstanceData& data = getSingletonData();
return data.mSingletonInstance;
}