Skip to content

Commit

Permalink
Fix grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaut committed Jan 6, 2024
1 parent 681bfdb commit a5425ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/posts/2024/faster-cpp-compile-times.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ a simple local replacement, `fmt::back_insert_iterator`. Without `<iterator>`
the time was down to ~178ms.

This would be the time to tackle `<string>` but as it turned out we also
conditionally include `<string_view>` or `<experimental/string_view>` (sigh).
conditionally included `<string_view>` or `<experimental/string_view>` (sigh).
It doesn't add any overhead directly because it is pulled in from `<string>`
anyway but we need to remove one in order to get rid of the other. We already
have a trait in ranges to detect `std::string_view`-like API which we can
Expand Down

0 comments on commit a5425ef

Please sign in to comment.