2010-04-09から1日間の記事一覧

C++0x exportを削除

C++

deprecatedになっていたexportですが、 N3090のWorking Draftからは削除されました。 キーワード自体はまだ残っています。 N3065 Removing Export

C++0x constexpr関数でのconst参照パラメータを許可

C++

constexpr関数でconst参照パラメータが使用できるようになりました。 この変更により、std::min、 std::max、std::pairの2引数をとるコンストラクタ、std::minmaxといった より多くの関数をconstexprにすることができるようになります。 template <class T> constexpr</class>…