D:\QT\5.10.0\msvc2013_64\include\QtCore\qstringview.h:177: error: C1001: 编译器中发生内部错误。
在qstringview.h中显示错误的部分代码为:
template <typename Char, if_compatible_char<Char> = true>
Q_DECL_CONSTEXPR QStringView(const Char *str, qsizetype len)
: m_size((Q_ASSERT(len >= 0), Q_ASSERT(str || !len), len)),
m_data(castHelper(str)) {}
template <typename Char, if_compatible_char<Char> = true>
Q_DECL_CONSTEXPR QStringView(const Char *f, const Char *l)
: QStringView(f, l - f) {}
template <typename Char, size_t N>
Q_DECL_CONSTEXPR QStringView(const Char (&array)[N]) Q_DECL_NOTHROW;
template <typename Char>
Q_DECL_CONSTEXPR QStringView(const Char *str) Q_DECL_NOTHROW;
template <typename Array, if_compatible_array<Array> = true>
Q_DECL_CONSTEXPR QStringView(const Array &str) Q_DECL_NOTHROW
: QStringView(str, lengthHelperArray(str)) {}
请问这个错误是因为安装时发生了错误吗