[Support] Add comment to explain why we can't drop NDEBUG.
authorDavide Italiano <davide@freebsd.org>
Sat, 24 Oct 2015 22:15:32 +0000 (22:15 +0000)
committerDavide Italiano <davide@freebsd.org>
Sat, 24 Oct 2015 22:15:32 +0000 (22:15 +0000)
Discussed with: Benjamin Kramer.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@251210 91177308-0d34-0410-b5e6-96231b3b80d8

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) {