Skip to content

Commit

Permalink
[cpp] Emit '*' for RawPointer. Closes HaxeFoundation#3870
Browse files Browse the repository at this point in the history
  • Loading branch information
hughsando committed Feb 24, 2015
1 parent f4e3e29 commit 1ea3dd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gencpp.ml
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ let rec class_string klass suffix params =
| (["cpp"],"ConstPointer") ->
"::cpp::Pointer< " ^ (String.concat "," (List.map type_string params) ) ^ " >"
| (["cpp"],"RawPointer") ->
" " ^ (String.concat "," (List.map type_string params) ) ^ " "
" " ^ (String.concat "," (List.map type_string params) ) ^ " * "
| (["cpp"],"RawConstPointer") ->
" const " ^ (String.concat "," (List.map type_string params) ) ^ " * "
| (["cpp"],"Function") ->
Expand Down

0 comments on commit 1ea3dd3

Please sign in to comment.