diff options
author | Richard Linden <none@none> | 2013-04-24 17:44:34 -0700 |
---|---|---|
committer | Richard Linden <none@none> | 2013-04-24 17:44:34 -0700 |
commit | 5622a47403443fb7b4b459fac1b0206deb2eadb3 (patch) | |
tree | 397f52bfc5cebbb0b2fcaf291fdd41e1e5d64128 /indra/llcommon/llsingleton.h | |
parent | 98161b566d6fa16ae67a48c98b8b087b0ad8d694 (diff) |
BUILDFIX: method name was wrong
Diffstat (limited to 'indra/llcommon/llsingleton.h')
-rw-r--r-- | indra/llcommon/llsingleton.h | 2 |
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; } |