summaryrefslogtreecommitdiff
path: root/tests/headers/convert-cpp-comment-to-rust.hpp
AgeCommit message (Collapse)Author
2017-07-08Intelligently convert C/C++ comments to RustDylan McKay
With this change, we can correctly parse C++ block comments. ``` /** * Does a thing * * More documentation. This test does something * useful. */ ``` into ``` /// Does a thing /// /// More documentation. This test does something /// useful. ``` Fixes servo/rust-bindgen#426.