Helper for using in templates.
| 86 | |
| 87 | /// Helper for using in templates. |
| 88 | std::string_view getDatabase() { return {}; } |
| 89 | |
| 90 | template <typename... OtherArgs> |
| 91 | std::string_view getDatabase(std::string_view arg1, const OtherArgs &...) { return arg1; } |