]> git.lizzy.rs Git - rust.git/commit
Rollup merge of #58865 - dlrobertson:fix-varargs, r=alexreg
authorkennytm <kennytm@gmail.com>
Sun, 3 Mar 2019 05:56:57 +0000 (13:56 +0800)
committerkennytm <kennytm@gmail.com>
Sun, 3 Mar 2019 05:56:57 +0000 (13:56 +0800)
commit946e670bce9f1e123dffce485fc979a96edbb0b8
treeec62a39d585d23dc5f6b7aa794c4f11e89b0af28
parentc835a0a94db7e68a57b6449497f74cf2f74c0256
parent379cd29d1c9ce06aa48fdd49208cfd7ffd3e5c07
Rollup merge of #58865 - dlrobertson:fix-varargs, r=alexreg

Fix C-variadic function printing

There is no longer a need to append the string `", ..."` to a functions
args as `...` is parsed as an argument and will appear in the functions
arguments.

Fixes: #58853