summaryrefslogtreecommitdiff
path: root/indra/llcorehttp/_httpoperation.h
diff options
context:
space:
mode:
authorMonty Brandenberg <monty@lindenlab.com>2012-06-01 18:18:53 -0400
committerMonty Brandenberg <monty@lindenlab.com>2012-06-01 18:18:53 -0400
commit640798bb9951bc512bcbcffbe136d42372c99322 (patch)
tree7872aaf159e8b7cd96556766e6e3500d15841401 /indra/llcorehttp/_httpoperation.h
parent7b9da4eeda7505162f37cbfa52591f7adff032e7 (diff)
Platform fixups: typedef for priority_queue, more specific comparator functor.
Diffstat (limited to 'indra/llcorehttp/_httpoperation.h')
-rw-r--r--indra/llcorehttp/_httpoperation.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/indra/llcorehttp/_httpoperation.h b/indra/llcorehttp/_httpoperation.h
index 4d9298d801..01e26029d2 100644
--- a/indra/llcorehttp/_httpoperation.h
+++ b/indra/llcorehttp/_httpoperation.h
@@ -159,19 +159,6 @@ public:
}; // end class HttpOpNull
-/// HttpOpCompare isn't an operation but a uniform comparison
-/// functor for STL containers that order by priority. Mainly
-/// used for the ready queue container but defined here.
-class HttpOpCompare
-{
-public:
- bool operator()(const HttpOperation * lhs, const HttpOperation * rhs)
- {
- return lhs->mReqPriority > rhs->mReqPriority;
- }
-}; // end class HttpOpCompare
-
-
} // end namespace LLCore
#endif // _LLCORE_HTTP_OPERATION_H_