clang-tidy is a static analysis tool: It analyzes C++ source code It finds bugs, bad practices, and design issues It uses the same compiler flags as your real build Examples of what it catches: Uninitialized variables Dangling references Inefficient copies Dangerous implicit conversions Missing explicit Poor modern C++ usage
11 lines
173 B
C++
11 lines
173 B
C++
#include <fmt/core.h>
|
|
#include <iostream>
|
|
|
|
int main() {
|
|
int x;
|
|
std::cout << x;
|
|
fmt::print("Hello from {} using fmt {}\n", "tut1", FMT_VERSION);
|
|
|
|
return 0;
|
|
}
|