From 0be0fba24868ee3b0b57687db322ed87dcd8d698 Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Mon, 18 Dec 2017 17:58:04 -0500 Subject: [PATCH] BHttpForm: Clang also uses pair<> now. --- headers/os/net/HttpForm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/headers/os/net/HttpForm.h b/headers/os/net/HttpForm.h index 6936e1ede5..ff7cee2972 100644 --- a/headers/os/net/HttpForm.h +++ b/headers/os/net/HttpForm.h @@ -32,7 +32,7 @@ private: // but never used (see BHttpForm::operator[] which does the necessary // check up) BHttpFormData(); -#if __GNUC__ >= 6 +#if (__GNUC__ >= 6) || defined(__clang__) friend class std::pair; #else friend class std::map;