Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove unneeded string copy construction in StringIdMap
A variable of type `std::string_view` can be directly assigned to a variable of type `std::string`. There is no need to construct a temporary variable first and then assign the value. The latter will cause a redundant copy construction.
- Loading branch information