summaryrefslogtreecommitdiff
path: root/indra/llmessage/tests/llhttpclient_test.cpp
diff options
context:
space:
mode:
authorWilliam Todd Stinson <stinson@lindenlab.com>2012-10-11 14:38:28 -0700
committerWilliam Todd Stinson <stinson@lindenlab.com>2012-10-11 14:38:28 -0700
commit52e306d575b38cb80fcda38efa83be32c251766b (patch)
treeee96da14e6984c79351daf3793e2e9926ca2b6b5 /indra/llmessage/tests/llhttpclient_test.cpp
parent4174e9be5ea6262d7ad27ab64805990fd13670ee (diff)
parent1709952adbb3ad3ba4eb7d5be39c0c67c389c7c5 (diff)
Pull and merge from https://bitbucket.org/lindenlab/viewer-development.
Diffstat (limited to 'indra/llmessage/tests/llhttpclient_test.cpp')
-rw-r--r--indra/llmessage/tests/llhttpclient_test.cpp4
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()