| 34 | #include <sstream> |
| 35 | |
| 36 | static std::string gpg_get_executable() |
| 37 | { |
| 38 | std::string gpgbin = "gpg"; |
| 39 | try { |
| 40 | gpgbin = get_git_config("gpg.program"); |
| 41 | } catch (...) { |
| 42 | } |
| 43 | return gpgbin; |
| 44 | } |
| 45 | static std::string gpg_nth_column (const std::string& line, unsigned int col) |
| 46 | { |
| 47 | std::string::size_type pos = 0; |
no test coverage detected