Skip to content

Commit

Permalink
stupid linter
Browse files Browse the repository at this point in the history
  • Loading branch information
eggrobin committed Mar 30, 2024
1 parent a7a7ffa commit ba3e5ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/cpuid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ std::string CPUFeatures() {
#if PRINCIPIA_COMPILER_MSVC
return CPUIDFlags()
| std::views::filter(&CPUIDFeatureFlag::IsSet)
| std::views::transform(&CPUIDFeatureFlag::name)
| std::views::transform(&CPUIDFeatureFlag::name) // NOLINT
| std::views::join_with(' ')
| std::ranges::to<std::string>();
#else // TODO(egg): Get rid of this once clang really has C++23.
Expand Down

0 comments on commit ba3e5ee

Please sign in to comment.