Page MenuHomeFreeBSD

[NFC] Use C++ features and headers in C++ code instead of C
Needs ReviewPublic

Authored by gfunni234_gmail.com on Aug 24 2021, 6:10 PM.
Tags
None
Referenced Files
Unknown Object (File)
Dec 20 2023, 4:20 AM
Unknown Object (File)
Dec 13 2023, 12:09 AM
Unknown Object (File)
Nov 12 2023, 7:21 AM
Unknown Object (File)
Nov 11 2023, 3:25 PM
Unknown Object (File)
Nov 11 2023, 7:16 AM
Unknown Object (File)
Nov 9 2023, 3:35 PM
Unknown Object (File)
Nov 5 2023, 4:13 AM
Unknown Object (File)
Oct 8 2023, 6:20 AM

Details

Reviewers
imp
jrtc27
dim
Summary

We don’t need to use integers as booleans or the C standard headers when we have the C++ standard headers and booleans

Diff Detail

Repository
rG FreeBSD src repository
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

It's written this way because our C++ is deliberately very C-like. And it avoids all the std:: everywhere that's just a mess. Are there any useful changes you're making here other than changing it to match your personal views on style? The only somewhat useful thing I can see is changing some ints to bools, but even then it's all in tests so I really don't care all that much about a tiny increase in memory footprint.

usr.sbin/pmc/cmd_pmc_summary.cc
184

It's already applied to the prototype, just like all the other cmd_pmc_*