Skip to content

Commit 9d04106

Browse files
committed
s/-/=/g
1 parent 4961e7d commit 9d04106

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

provides/include/lax_v1/synopsis.hpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
namespace lax_v1 {
44

5-
// type.hpp --------------------------------------------------------------------
5+
// type.hpp ====================================================================
66

77
template <class T> struct type_t;
88

99
template <class Expr> using type_of_t = typename Expr::type;
1010

11-
// value.hpp -------------------------------------------------------------------
11+
// value.hpp ===================================================================
1212

1313
template <class Type, Type value> struct value_t;
1414

@@ -22,7 +22,7 @@ template <auto value> using auto_t = value_t<decltype(value), value>;
2222
using true_t = auto_t<true>;
2323
using false_t = auto_t<false>;
2424

25-
// arithmetic.hpp --------------------------------------------------------------
25+
// arithmetic.hpp ==============================================================
2626

2727
template <class LhsExpr, class RhsExpr> struct add_m;
2828
template <class LhsExpr, class RhsExpr> struct div_m;
@@ -32,15 +32,15 @@ template <class LhsExpr, class RhsExpr> struct sub_m;
3232

3333
template <class Expr> struct neg_m;
3434

35-
// comparison.hpp --------------------------------------------------------------
35+
// comparison.hpp ==============================================================
3636

3737
template <class LhsExpr, class RhsExpr> struct eq_m;
3838
template <class LhsExpr, class RhsExpr> struct gt_m;
3939
template <class LhsExpr, class RhsExpr> struct gte_m;
4040
template <class LhsExpr, class RhsExpr> struct lt_m;
4141
template <class LhsExpr, class RhsExpr> struct lte_m;
4242

43-
// logical.hpp -----------------------------------------------------------------
43+
// logical.hpp =================================================================
4444

4545
template <class... Exprs> struct if_m;
4646

@@ -49,11 +49,11 @@ template <class... Exprs> struct or_m;
4949

5050
template <class Expr> struct not_m;
5151

52-
// force.hpp -------------------------------------------------------------------
52+
// force.hpp ===================================================================
5353

5454
template <class Expr> using force_t = typename Expr::eval;
5555

56-
// lazify.hpp ------------------------------------------------------------------
56+
// lazify.hpp ==================================================================
5757

5858
template <template <class... Parameters> class Function, class... Arguments>
5959
struct lazify_t;
@@ -64,7 +64,7 @@ template <class Type,
6464
class... Arguments>
6565
struct lazify_v;
6666

67-
// type_traits.hpp -------------------------------------------------------------
67+
// type_traits.hpp =============================================================
6868

6969
template <class TypeExpr> struct alignment_of_m;
7070

0 commit comments

Comments
 (0)