2012-04-14

本物のC++プログラマーはいまどきcore issue 1123の実装ごときに歓喜しない

なぜならば、そんなのはとっくの昔に実装されていて当然だからだ。某鉱物君のようにはしゃいだりはしない。

#include <iostream>

struct X
{
    ~X() { }
} ;

int main( )
{
    X x ;
    std::cout << std::boolalpha << noexcept( x.~X() ) << std::endl ;
}

今をときめく本物のC++プログラマーはclangを使う。

ところで、boolalphaをうっかりtypoしてboolaphaと入力してしまい、そのままコンパイルに通してしまったところ、clangは、「もしかしてboolalpha?」とささやいてくれた。すばらしい。

No comments:

Post a Comment

You can use some HTML elements, such as <b>, <i>, <a>, also, some characters need to be entity referenced such as <, > and & Your comment may need to be confirmed by blog author. Your comment will be published under GFDL 1.3 or later license with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.