diff options
author | Logan Dethrow <log@lindenlab.com> | 2011-09-06 16:54:53 -0400 |
---|---|---|
committer | Logan Dethrow <log@lindenlab.com> | 2011-09-06 16:54:53 -0400 |
commit | a8d49f7cf54151bfe03049417d59462688946ae0 (patch) | |
tree | 5fbd5db8b80cf664e4bae0bdb9f52eb4b3bfc365 /indra/llcommon/llsingleton.h | |
parent | 9a1e8d78fe461e5257ca76c295c4915f8719aa4d (diff) |
LLProxy code review fixes.
* Removed check_curl_code and check_curl_multi_code from the global namespace.
* Added comments documenting which thread the public methods of LLProxy should be called from.
* Corrected grammar in LLSingleton.h
* Fixed a buffer scope problem in llpacketring.cpp.
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 2ce6a9d438..49d99f2cd0 100644 --- a/indra/llcommon/llsingleton.h +++ b/indra/llcommon/llsingleton.h @@ -144,7 +144,7 @@ public: * method to destroy the singleton early can prevent these crashes. * * An example where this is needed is for a LLSingleton that has an APR - * object as a member and make APR calls on destruction. The APR system is + * object as a member that makes APR calls on destruction. The APR system is * shut down explicitly before main() exits. This causes a crash on exit. * Using this method before the call to apr_terminate() and NOT calling * getInstance() again will prevent the crash. |