Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ksherlock authored Sep 30, 2017
1 parent 8a15d39 commit f3fa702
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ pointers as much (unless, of course, you want to!)


###lemon--
%token_type {std::any} // c++17

%token_type {std::any} // c++17
%type number_list{std::vector<int>}
%type string_list{std::vector<std::string>}
// or use a std::shared_ptr or std::unique_ptr...
Expand Down Expand Up @@ -51,7 +52,7 @@ pointers as much (unless, of course, you want to!)

###lemon

%token_type {std::any *)}
%token_type {std::any *)}
%token_destructor { delete $$ }

%type number_list{std::vector<int> *}
Expand Down

0 comments on commit f3fa702

Please sign in to comment.