mirror of
https://github.com/pybind/pybind11.git
synced 2026-04-19 22:39:09 +00:00
Adding .clang-tidy readability-braces-around-statements option.
clang-tidy automatic changes. NO manual changes.
This commit is contained in:
committed by
Ralf W. Grosse-Kunstleve
parent
8581584e60
commit
ddbc74c674
@@ -22,8 +22,9 @@
|
||||
void noisy_function(const std::string &msg, bool flush) {
|
||||
|
||||
std::cout << msg;
|
||||
if (flush)
|
||||
if (flush) {
|
||||
std::cout << std::flush;
|
||||
}
|
||||
}
|
||||
|
||||
void noisy_funct_dual(const std::string &msg, const std::string &emsg) {
|
||||
|
||||
Reference in New Issue
Block a user