DrTimothyAldenDavis / SuiteSparse

The official SuiteSparse library: a suite of sparse matrix algorithms authored or co-authored by Tim Davis, Texas A&M University.
https://people.engr.tamu.edu/davis/suitesparse.html
Other
1.15k stars 259 forks source link

SuiteSparse_config: Avoid including headers in extern "C" block. #827

Closed mmuetzel closed 3 months ago

mmuetzel commented 4 months ago

Including headers (from the standard library) in extern "C" blocks can be problematic.

Use extern "C" block only around function declarations.

See also #813.