@@ -36,7 +36,7 @@ calculate_stats() {
3636 local doc_files
3737 local workflow_files
3838
39- header_files=$( find include -name ' *.hpp ' -type f 2> /dev/null | wc -l | tr -d ' ' )
39+ header_files=$( find include -name ' *.h ' -type f 2> /dev/null | wc -l | tr -d ' ' )
4040 source_files=$( find src -name ' *.cpp' -type f 2> /dev/null | wc -l | tr -d ' ' )
4141 test_files=$( find tests -name ' *.cpp' -type f 2> /dev/null | wc -l | tr -d ' ' )
4242 example_dirs=$( find examples -mindepth 1 -maxdepth 1 -type d 2> /dev/null | wc -l | tr -d ' ' )
@@ -50,7 +50,7 @@ calculate_stats() {
5050 local example_loc
5151 local total_loc
5252
53- header_loc=$( find include -name ' *.hpp ' -type f -exec cat {} + 2> /dev/null | wc -l | tr -d ' ' )
53+ header_loc=$( find include -name ' *.h ' -type f -exec cat {} + 2> /dev/null | wc -l | tr -d ' ' )
5454 source_loc=$( find src -name ' *.cpp' -type f -exec cat {} + 2> /dev/null | wc -l | tr -d ' ' )
5555 test_loc=$( find tests -name ' *.cpp' -type f -exec cat {} + 2> /dev/null | wc -l | tr -d ' ' )
5656 example_loc=$( find examples -name ' *.cpp' -type f -exec cat {} + 2> /dev/null | wc -l | tr -d ' ' )
@@ -133,13 +133,13 @@ export_raw_stats() {
133133 local header_files source_files test_files example_dirs doc_files workflow_files
134134 local header_loc source_loc test_loc example_loc total_loc test_cases
135135
136- header_files=$( find include -name ' *.hpp ' -type f 2> /dev/null | wc -l | tr -d ' ' )
136+ header_files=$( find include -name ' *.h ' -type f 2> /dev/null | wc -l | tr -d ' ' )
137137 source_files=$( find src -name ' *.cpp' -type f 2> /dev/null | wc -l | tr -d ' ' )
138138 test_files=$( find tests -name ' *.cpp' -type f 2> /dev/null | wc -l | tr -d ' ' )
139139 example_dirs=$( find examples -mindepth 1 -maxdepth 1 -type d 2> /dev/null | wc -l | tr -d ' ' )
140140 doc_files=$( find docs -name ' *.md' -type f 2> /dev/null | wc -l | tr -d ' ' )
141141 workflow_files=$( find .github/workflows -name ' *.yml' -type f 2> /dev/null | wc -l | tr -d ' ' )
142- header_loc=$( find include -name ' *.hpp ' -type f -exec cat {} + 2> /dev/null | wc -l | tr -d ' ' )
142+ header_loc=$( find include -name ' *.h ' -type f -exec cat {} + 2> /dev/null | wc -l | tr -d ' ' )
143143 source_loc=$( find src -name ' *.cpp' -type f -exec cat {} + 2> /dev/null | wc -l | tr -d ' ' )
144144 test_loc=$( find tests -name ' *.cpp' -type f -exec cat {} + 2> /dev/null | wc -l | tr -d ' ' )
145145 example_loc=$( find examples -name ' *.cpp' -type f -exec cat {} + 2> /dev/null | wc -l | tr -d ' ' )
0 commit comments