https://teratail.com/questions/328756
への回答を書いている際に
cpp
1#include <cstddef> 2#include <type_traits> 3template<typename T,size_t N> 4struct Boo{}; 5namespace traits { 6 template<typename> struct boo; 7 template<typename T, size_t N> 8 struct boo<Boo<T, N>> : std::integral_constant<std::size_t, N> 9 { 10 using type = T; 11 }; 12 template<typename T> using boo_elem_t = typename boo<T>::type; 13 14 template<typename ...Args> 15 concept calculatable_boos = requires (Args ...args) { 16 requires sizeof...(Args) >= 2; 17 std::common_type_t<boo_elem_t<Args>...>; 18 { ( boo<Args>::value == ... ) }; 19 }; 20} 21template<typename ...Args> 22auto func(const Args...) 23requires traits::calculatable_boos<Args...> 24{ 25 26} 27 28int main(){ 29 Boo<int,1> a; 30 Boo<int,1> b; 31 Boo<short,1> c; 32 func(a,b); 33 func(a,c); 34}
https://wandbox.org/permlink/GgqjR0OkvmmKWAM4
のようなコードに対して、
gcc
prog.cc:17:44: error: expected primary-expression before ';' token 17 | std::common_type_t<boo_elem_t<Args>...>; |
clang
prog.cc:17:44: error: expected '(' for function-style cast or type construction std::common_type_t<boo_elem_t<Args>...>; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
のように言われてしまいました。ちなみにmsvcはなにも指摘しません。ここでこの17行目を
cpp
1typename std::common_type<boo_elem_t<Args>...>::type;
とすると意図したように動きました。
これがどういう原理で発生しているのか教えて下さい。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。