dexonsmith added inline comments.

================
Comment at: src/cxa_demangle.cpp:3036
                         break;
-                    if (db.names.size() < 2)
+                    assert(k0 <= k1 && "parse_type() mutated the name stack");
+                    if (k1 == k0)
----------------
There's no `#include <cassert>` in this file.  Depending on the standard 
library you're building against, you made need that here.


https://reviews.llvm.org/D33368



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to