[libcxx-commits] [PATCH] D131357: [libc++] Implement `operator<=>` for `type_index`

Adrian Vogelsgesang via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Mon Aug 8 10:34:46 PDT 2022


avogelsgesang added inline comments.


================
Comment at: libcxx/test/std/utilities/type.index/type.index.members/cmp.pass.cpp:48
+  // Test `t1` and `t3` which are not equal
+  bool isLess = t1 < t3;
+  assert(testComparisons(t1, t3, /*isEqual*/ false, isLess));
----------------
Mordante wrote:
> We use snake-case in our tests.
only for variable names or also for function names?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D131357



More information about the libcxx-commits mailing list