2020-09-01から1ヶ月間の記事一覧

[C++]モジュールにおける所有権モデル

モジュールにおける所有権とは、名前付きモジュールに属しているエンティティの名前に関する所有権の事で、次のようなコードがどう振舞うかを決定するものです。 /// moduleA.ixx export module moduleA; export int munge(int a, int b) { return a + b; } …

[C++]WG21月次提案文書を眺める(2020年8月)

文書の一覧 www.open-std.org 提案文書で採択されたものはありません。全部で21本あります。 N4862 : Business Plan and Convener's Report P0288R6 : any_invocable P0881R6 : A Proposal to add stacktrace library P1787R5 : Declarations and where to f…