Ensure portability/Windows.h is included before OpenSSL headers
[folly.git] / folly / MicroSpinLock.h
index 1318d9e9f0e02d9445d17553cb4e722674eacfec..b804a8a6dfd58b423dfd43940d2f7b638bb7e1f0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2016 Facebook, Inc.
+ * Copyright 2017 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -105,6 +105,9 @@ struct MicroSpinLock {
                                                         std::memory_order_relaxed);
   }
 };
+static_assert(
+    std::is_pod<MicroSpinLock>::value,
+    "MicroSpinLock must be kept a POD type.");
 
 //////////////////////////////////////////////////////////////////////