【问题标题】:Conditional Default Constructor compiles in GCC but not MSVC条件默认构造函数在 GCC 中编译,但在 MSVC 中不编译
【发布时间】:2017-11-18 20:08:07
【问题描述】:

我正在创建一个具有以下约束的模板类:

  • 如果类的typegeneric,应该有普通的构造函数
  • 如果类的type 不是generic,它应该有显式构造函数。

我想出的解决方案是这样的:

#include<type_traits>
#include<vector>

enum class point_type {
    generic, center, corner
};

template<point_type type, typename T>
struct point2_base {
    T x, y;

    template<point_type _type = type, typename std::enable_if_t<_type == point_type::generic, int> = 0>
    point2_base() :
        x(0), y(0) {
    }
    template<point_type _type = type, typename std::enable_if_t<_type != point_type::generic, int> = 0>
    explicit point2_base() :
        x(0), y(0) {
    }
};

using point2f = point2_base<point_type::generic, float>;
using corner2f = point2_base<point_type::corner, float>;
using center2f = point2_base<point_type::center, float>;

这似乎工作得很好(我可以用point2f point;corner2f corner; 等实例化类型),但是我编写的一些深奥的代码无法在 MSVC 中编译:

struct line {
    point2f baseline;
    std::vector<int> characters; //The type of the vector doesn't seem to matter
};

int main() {
    std::vector<line> lines;
    lines.emplace_back();
}

MSVC 中的Godbolt reports these errors

example.cpp
/opt/compiler-explorer/windows/19.10.25017/lib/native/include/vector(927): warning C4530: C++ exception handler used, but unwind semantics are not enabled. Specify /EHsc
33 : <source>(33): note: see reference to function template instantiation 'void std::vector<line,std::allocator<_Ty>>::emplace_back<>(void)' being compiled
        with
        [
            _Ty=line
        ]
33 : <source>(33): note: see reference to function template instantiation 'void std::vector<line,std::allocator<_Ty>>::emplace_back<>(void)' being compiled
        with
        [
            _Ty=line
        ]
/opt/compiler-explorer/windows/19.10.25017/lib/native/include/xmemory0(840): error C2783: 'point2_base<point_type::corner,float>::point2_base(void)': could not deduce template argument for '__formal'
13 : <source>(13): note: see declaration of 'point2_base<point_type::corner,float>::point2_base'
/opt/compiler-explorer/windows/19.10.25017/lib/native/include/xmemory0(959): note: see reference to function template instantiation 'void std::allocator<_Ty>::construct<_Objty,>(_Objty *)' being compiled
        with
        [
            _Ty=line,
            _Objty=line
        ]
/opt/compiler-explorer/windows/19.10.25017/lib/native/include/xmemory0(959): note: see reference to function template instantiation 'void std::allocator<_Ty>::construct<_Objty,>(_Objty *)' being compiled
        with
        [
            _Ty=line,
            _Objty=line
        ]
/opt/compiler-explorer/windows/19.10.25017/lib/native/include/xmemory0(1097): note: see reference to function template instantiation 'void std::allocator_traits<_Alloc>::construct<_Ty,>(std::allocator<_Ty> &,_Objty *)' being compiled
        with
        [
            _Alloc=std::allocator<line>,
            _Ty=line,
            _Objty=line
        ]
/opt/compiler-explorer/windows/19.10.25017/lib/native/include/xmemory0(1096): note: see reference to function template instantiation 'void std::allocator_traits<_Alloc>::construct<_Ty,>(std::allocator<_Ty> &,_Objty *)' being compiled
        with
        [
            _Alloc=std::allocator<line>,
            _Ty=line,
            _Objty=line
        ]
/opt/compiler-explorer/windows/19.10.25017/lib/native/include/vector(928): note: see reference to function template instantiation 'void std::_Wrap_alloc<std::allocator<_Ty>>::construct<_Ty,>(_Ty *)' being compiled
        with
        [
            _Ty=line
        ]
/opt/compiler-explorer/windows/19.10.25017/lib/native/include/vector(928): note: see reference to function template instantiation 'void std::_Wrap_alloc<std::allocator<_Ty>>::construct<_Ty,>(_Ty *)' being compiled
        with
        [
            _Ty=line
        ]
33 : <source>(33): note: see reference to function template instantiation 'void std::vector<line,std::allocator<_Ty>>::emplace_back<>(void)' being compiled
        with
        [
            _Ty=line
        ]
33 : <source>(33): note: see reference to function template instantiation 'void std::vector<line,std::allocator<_Ty>>::emplace_back<>(void)' being compiled
        with
        [
            _Ty=line
        ]
Microsoft (R) C/C++ Optimizing Compiler Version 19.10.25017 for x64
Copyright (C) Microsoft Corporation.  All rights reserved.
Compiler exited with result code 2

奇怪的是,GCC 编译这段代码没有问题。

我还发现有一些东西可以让 MSVC 编译:

struct line {
    point2f baseline;
    //If I remove the vector, the code compiles
};

//////////

struct line {
    point2f baseline;
    std::vector<int> characters; //The type of the vector doesn't seem to matter
    line() {} //Adding a trivial, explicitly declared constructor allows the code to compile
};

以下内容无法在 MSVC 中编译:

struct line {
    point2f baseline;
    std::vector<int> characters; //The type of the vector doesn't seem to matter
    line() = default; //Same errors as before.
};

这是我为 point2_base 类编写构造函数的方式的缺陷吗?我应该使用不同的机制来有条件地设置这些构造函数explicit?这只是 MSVC 中的一个错误吗?

【问题讨论】:

  • 试试 clang 看看它是否能编译你的代码。如果是这样,那么您可能在 MSVC 中发现了一个错误。
  • @rubenvb Clang 编译它。
  • 您是否尝试过使用 /EHsc(在 cl 命令行上)进行编译,就像诊断所说的那样?没有至少 /EH c++ 对象不会因为异常而超出范围而被销毁。
  • @SornelHaetir 这删除了警告之一,但没有消除编译错误。

标签: c++ gcc visual-c++ template-meta-programming explicit


【解决方案1】:

这似乎是 Visual Studio 编译器 which is fixed as of version 19.14 中的一个错误。我不清楚哪个版本的 Visual Studio 修复了这个错误。

【讨论】:

    猜你喜欢
    • 2018-08-02
    • 1970-01-01
    • 1970-01-01
    • 2020-06-03
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2015-09-15
    • 2018-10-04
    相关资源
    最近更新 更多