[Box Backup-commit] COMMIT r2720 - box/RELEASE/0.11/lib/httpserver

subversion at boxbackup.org subversion at boxbackup.org
Sat Aug 28 12:54:15 BST 2010


Author: chris
Date: 2010-08-28 12:54:15 +0100 (Sat, 28 Aug 2010)
New Revision: 2720

Modified:
   box/RELEASE/0.11/lib/httpserver/HTTPRequest.h
Log:
Fix compile error on OpenSolaris 10/Sun Studio 12.


Modified: box/RELEASE/0.11/lib/httpserver/HTTPRequest.h
===================================================================
--- box/RELEASE/0.11/lib/httpserver/HTTPRequest.h	2010-08-28 10:46:32 UTC (rev 2719)
+++ box/RELEASE/0.11/lib/httpserver/HTTPRequest.h	2010-08-28 11:54:15 UTC (rev 2720)
@@ -49,7 +49,8 @@
 	HTTPRequest &operator=(const HTTPRequest &);
 public:
 	typedef std::multimap<std::string, std::string> Query_t;
-	typedef std::pair<std::string, std::string> QueryEn_t, Header;
+	typedef Query_t::value_type QueryEn_t;
+	typedef std::pair<std::string, std::string> Header;
 
 	enum
 	{




More information about the Boxbackup-commit mailing list