此 MCVE 使用 gcc 7.3 编译/运行:
请注意,此 MCVE 已大大减少,以保持错误可重现,因此Allocator
模板中的代码没有意义,但它不会影响星座!
#include <regex>
#include <string>
#include <iostream>
namespace FaF
{
template <typename T>
class Allocator
{
public:
typedef T value_type;
Allocator() throw() {}
template <typename U> Allocator (const Allocator<U>&) throw() {}
~Allocator() throw() {}
T* allocate (std::size_t num, const void* hint = 0)
{
(void) hint; (void) num;
return new ( T );
}
void deallocate (T* p, std::size_t num) { (void) num; (void) p; }
};
using string = std::basic_string<char, std::char_traits<char>, Allocator<char>>;
using smatch = std::match_results<FaF::string::const_iterator, Allocator<FaF::string::const_iterator>>;
}
int main()
{
FaF::smatch results {};
std::cout << "OK\n";
}
Allocator
我自己的分配器在哪里。
我们现在使用 gcc 8.2 并收到此错误
FaF::smatch results {};
^--- vector must have the same value as its allocator
当我更改FaF::smatch
为默认值std::smatch
时,它会使用 gcc 8.2 编译/运行。
我的问题:
是什么原因以及为什么此代码无法使用 gcc 8.2 编译,即使它使用带有 C++17 设置的 gcc 7.3 编译 - 没有其他任何改变。这让我感到困惑。某处改变了一些显然与 C++ 无关的东西。
现场观看- clang 6.0 也接受该版本FaF::smatch
。
编译器标志:
-O3 -std=c++17 -Werror -Wextra -Wold-style-cast -Wall