Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ブレースの初期化では狭めることはできないと思いました。しかし、ブレースの初期化がint const許可されているのはなぜですか?char
int const
char
int value1 = 12; char c1{value1}; // error! no narrowing const int value2 = 12; char c2{value2}; // why is this fine?
ゴッドボルトでご覧ください。