[libcxx-commits] [PATCH] D118914: [libc++] Move fpos into its own header

Arthur O'Dwyer via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Thu Feb 3 19:03:35 PST 2022


Quuxplusone accepted this revision.
Quuxplusone added a comment.

Two nits, then ship it!



================
Comment at: libcxx/include/__ios/fpos.h:70
+template <class _StateT>
+inline _LIBCPP_HIDE_FROM_ABI bool operator!=(const fpos<_StateT>& __x, const fpos<_StateT>& __y) {
+  return streamoff(__x) != streamoff(__y);
----------------
Let's linebreak after `_LIBCPP_HIDE_FROM_ABI` and before `bool`, in each case.


================
Comment at: libcxx/include/__ios/fpos.h:76
+
+#endif
----------------



Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D118914/new/

https://reviews.llvm.org/D118914



More information about the libcxx-commits mailing list