[Frontend] Remove unused includes (NFC) (#116927)
[llvm-project.git] / llvm / test / tools / llvm-cov / Inputs / multithreaded_report / abs.h
blob41eb2b06c0fa046f67ef69e6ae88d49aaf6fc8bd
1 template<typename T>
2 T abs(T x) {
3 if (x < 0) {
4 return -x;
6 return x;