Add method to parse parameter list in query string to folly::Uri
[folly.git] / folly / RWSpinLock.h
index dbef63885531a2f728f7418e6b6e7a32efa34259..995c466f61786058bd1c7bf07ac1758a40bb41fc 100644 (file)
@@ -106,9 +106,9 @@ pthread_rwlock_t Read        728698     24us       101ns     7.28ms     194us
 
 */
 
-#include "folly/Portability.h"
+#include <folly/Portability.h>
 
-#if defined(__GNUC__) && !defined(__clang__) && \
+#if defined(__GNUC__) && \
   (defined(__i386) || FOLLY_X64 || \
    defined(ARCH_K8))
 #define RW_SPINLOCK_USE_X86_INTRINSIC_
@@ -125,7 +125,7 @@ pthread_rwlock_t Read        728698     24us       101ns     7.28ms     194us
 #include <sched.h>
 #include <glog/logging.h>
 
-#include "folly/Likely.h"
+#include <folly/Likely.h>
 
 namespace folly {