This brings the entirety of netaddress.h into styling compliance
with regard to the indentation of public
/private
/protected
class blocks, per the styling guidelines.
As outlined in the developer documentation, there should be
no indentation for public
/private
/protected
class blocks,
and this file currently has a “mixed-usage” of indentation vs
non-indentation in this regard. This PR serves to bring the file
into uniform compliance with the standing guidelines, which
should prevent/ease further confusion.
This is a whitespace-only PR, as can be verified by enabling the “Hide whitespace changes” option in GitHub’s WebUI; net 0/0 additions/deletions.
I know blanket refactors such as this are generally discouraged, but seeing as there is little current activity with this file at the moment, and that it is bringing it into styling compliance, I feel it is appropriate/justified if for nothing else than squashing a discrepancy in the existing code styling that is in direct contradiction to the stated guidelines.
Note: I have specifically ignored the pointer/reference side portion
of clang-format here specifically to make this a whitespace-only
change-set. As such, anyone running the clang-format-diff.py
script manually against this commit will see further changes that
are intentionally omitted here, but could be added if deemed
appropriate.