diff options
| author | Bent Bisballe Nyeng <deva@aasimon.org> | 2025-12-23 14:07:46 +0100 |
|---|---|---|
| committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2025-12-23 14:15:15 +0100 |
| commit | 293ccba26f5cd17521df7b4641989dd771865415 (patch) | |
| tree | d6782d07219f333c4a5e29f7c3939d1ff0567676 /src/util.cc | |
| parent | 4b72df8f8e32aad83b628fb2f1c852cb108c2aba (diff) | |
Use std::string_view instead of std::string in tools.cc whenever applicable
Diffstat (limited to 'src/util.cc')
| -rw-r--r-- | src/util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cc b/src/util.cc index a4abd23..010cde3 100644 --- a/src/util.cc +++ b/src/util.cc @@ -205,7 +205,7 @@ std::string locate(const std::string& prog, return {}; } -std::vector<std::string> argsplit(const std::string& str) +std::vector<std::string> argsplit(std::string_view str) { enum class state { |
