folly copyright 2015 -> copyright 2016
[folly.git] / folly / Portability.h
index 5054afd8424a3271e04b59e7611f3234eab80b8a..b35bdee89950cf8eb62de55a81f24e56998206be 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2015 Facebook, Inc.
+ * Copyright 2016 Facebook, Inc.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -334,6 +334,15 @@ typedef SSIZE_T ssize_t;
 
 #endif
 
+// Debug
+namespace folly {
+#ifdef NDEBUG
+constexpr auto kIsDebug = false;
+#else
+constexpr auto kIsDebug = true;
+#endif
+}
+
 // Endianness
 namespace folly {
 #ifdef _MSC_VER