jsitaraman / tioga

Tioga is a library for overset grid assembly on parallel distributed systems
GNU Lesser General Public License v3.0
65 stars 36 forks source link

Missing includes for std::runtime_error #18

Closed nwukie closed 4 years ago

nwukie commented 4 years ago

On the most recent master commit, I am observing some compile time errors related to std::runtime_error calls.

tioga/src/CartBlock.C:168:18: error: ‘runtime_error’ is not a member of ‘std’ 168 | throw std::runtime_error("#tioga: Donor function required for pdegree > 0");

Adding #include <stdexcept> for files that require it resolved the compile issue.