diff options
author | Dave Parks <davep@lindenlab.com> | 2012-10-03 15:17:55 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2012-10-03 15:17:55 -0500 |
commit | 20e1f567d5c09df10fe120fde0d5f294eff0fff4 (patch) | |
tree | 1f4958350e18cd3f36e92cb4a71bc612c21d9b7f /indra/llmessage/tests/llhttpclient_test.cpp | |
parent | 374f20edf09ff8194c715d190c114eaacac00bfe (diff) |
Fix for tests
Diffstat (limited to 'indra/llmessage/tests/llhttpclient_test.cpp')
-rw-r--r-- | indra/llmessage/tests/llhttpclient_test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llmessage/tests/llhttpclient_test.cpp b/indra/llmessage/tests/llhttpclient_test.cpp index 843c3bcc4b..a2be307cc8 100644 --- a/indra/llmessage/tests/llhttpclient_test.cpp +++ b/indra/llmessage/tests/llhttpclient_test.cpp @@ -189,9 +189,9 @@ namespace tut } public: - static boost::intrusive_ptr<Result> build(HTTPClientTestData& client) + static Result* build(HTTPClientTestData& client) { - return boost::intrusive_ptr<Result>(new Result(client)); + return new Result(client); } ~Result() |