Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:16:19

0001 #include <iostream>
0002 
0003 int main()
0004 {
0005   std::cout << "jenkins searches our code base for .cpp files which" << std::endl;
0006   std::cout << "so far we do not have and clang-tidy throws a file not found error" << std::endl;
0007   std::cout << "But rather than removing this extension from jenkins and risking" << std::endl;
0008   std::cout << "that files with this extension get checked in and then are exlcuded" << std::endl;
0009   std::cout << "I created this dummy file which is not compiled but gives" << std::endl;
0010   std::cout << "clang-tidy something to sink its teeth in" << std::endl;
0011   return 0;
0012 }