| 7 | namespace amrex |
| 8 | { |
| 9 | std::string Version () // NOLINT(misc-use-internal-linkage) |
| 10 | { |
| 11 | #ifdef AMREX_GIT_VERSION |
| 12 | return std::string(AMREX_GIT_VERSION); |
| 13 | #else |
| 14 | return std::string("Unknown"); |
| 15 | #endif |
| 16 | } |
| 17 | } // namespace amrex |
no outgoing calls
no test coverage detected