Format C++ with clang-format 14.0.0

This commit is contained in:
David Tolnay 2022-10-15 13:10:51 -07:00
parent 746a369c6b
commit eae0477484
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -177,9 +177,7 @@ rust::Vec<rust::String> c_return_rust_vec_string() {
return {"2", "0", "2", "0"};
}
rust::Vec<bool> c_return_rust_vec_bool() {
return {true, true, false};
}
rust::Vec<bool> c_return_rust_vec_bool() { return {true, true, false}; }
size_t c_return_identity(size_t n) { return n; }