Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 758 Bytes

global_scope_syntax_in_nested_name_specifier.md

File metadata and controls

40 lines (28 loc) · 758 Bytes

入れ子名の指定にグローバルスコープ :: を付加することを許可

  • cpp11[meta cpp]

概要

入れ子名を指定する構文において、先頭にグローバルスコープの指定::を付加することが許可された。

// クラスAの宣言
struct A;

// クラスAの定義
struct ::A {
};

仕様

nested-name-specifierの構文が、以下のように変更された。

変更前:

nested-name-specifier:
  type-name ::
  namespace-name ::

変更後:

nested-name-specifier:
  :: opt type-name ::
  :: opt namespace-name ::
  • opt[italic]

参照