stdCPPSuggestions top-level property

List<FigSuggestion> stdCPPSuggestions
final

Implementation

final List<FigSuggestion> stdCPPSuggestions = [
  FigSuggestion(
      name: ['c++98', 'c++03'], description: 'ISO C++ 1998 with amendments'),
  FigSuggestion(
      name: ['gnu++98', 'gnu++03'],
      description: 'ISO C++ 1998 with amendments and GNU extensions'),
  FigSuggestion(name: 'c++11', description: 'ISO C++ 2011 with amendments'),
  FigSuggestion(
      name: 'gnu++11',
      description: 'ISO C++ 2011 with amendments and GNU extensions'),
  FigSuggestion(name: 'c++14', description: 'ISO C++ 2014 with amendments'),
  FigSuggestion(
      name: 'gnu++14',
      description: 'ISO C++ 2014 with amendments and GNU extensions'),
  FigSuggestion(name: 'c++17', description: 'ISO C++ 2017 with amendments'),
  FigSuggestion(
      name: 'gnu++17',
      description: 'ISO C++ 2017 with amendments and GNU extensions'),
  FigSuggestion(name: 'c++20', description: 'ISO C++ 2020 DIS'),
  FigSuggestion(
      name: 'gnu++20', description: 'ISO C++ 2020 DIS with GNU extensions'),
  FigSuggestion(
      name: 'c++2b', description: 'Working draft for ISO C++ 2023 DIS'),
  FigSuggestion(
      name: 'gnu++2b',
      description: 'Working draft for ISO C++ 2023 DIS with GNU extensions')
];