package clangml

  1. Overview
  2. Docs
type init_list_form =
  1. | Syntactic
  2. | Semantic
type t = {
  1. ignore_implicit_cast : bool;
  2. ignore_paren : bool;
  3. ignore_paren_in_types : bool;
  4. ignore_expr_with_cleanups : bool;
  5. ignore_materialize_temporary_expr : bool;
  6. ignore_bind_temporary_expr : bool;
  7. ignore_injected_class_names : bool;
  8. ignore_implicit_constructors : bool;
  9. ignore_implicit_methods : bool;
  10. ignore_anonymous_fields : bool;
  11. ignore_indirect_fields : bool;
  12. ignore_using_types : bool;
  13. convert_integer_literals : bool;
  14. convert_floating_literals : bool;
  15. init_list_form : init_list_form;
}
val default : t