[Support] Add comment to explain why we can't drop NDEBUG.
[oota-llvm.git] / include / llvm / Support / UnicodeCharRanges.h
index 9f738dff11075287bb9f6e8a0f93b731823cbbcf..134698c3ec6b394c2b41910f251e3e0715741b87 100644 (file)
@@ -51,6 +51,11 @@ public:
   /// the constructor, so it makes sense to create as few UnicodeCharSet
   /// instances per each array of ranges, as possible.
 #ifdef NDEBUG
+
+  // FIXME: This could use constexpr + static_assert. This way we
+  // may get rid of NDEBUG in this header. Unfortunately there are some
+  // problems to get this working with MSVC 2013. Change this when
+  // the support for MSVC 2013 is dropped.
   LLVM_CONSTEXPR UnicodeCharSet(CharRanges Ranges) : Ranges(Ranges) {}
 #else
   UnicodeCharSet(CharRanges Ranges) : Ranges(Ranges) {