Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1004 Bytes

File metadata and controls

35 lines (26 loc) · 1004 Bytes

operator,

  • utility[meta header]
  • std[meta namespace]
  • constant_wrapper[meta class]
  • function template[meta id-type]
  • cpp26[meta cpp]
template <constexpr-param L, constexpr-param R>
friend constexpr auto operator,(L x, R y) noexcept = delete;

概要

constant_wrapperに対するカンマ演算子はdelete定義されている。

備考

  • カンマ演算子の誤用を防ぐためにdelete定義されている。

バージョン

言語

  • C++26

処理系

  • Clang: 23 [mark verified]
  • GCC: 16.1 [mark verified]
  • Visual C++: 2026 Update 2 [mark noimpl]

関連項目

参照