comparison mercurial/cext/revlog.c @ 40560:8c1f36bf2d3e

revlog: add a comment to help clang-format produce less-awful results Differential Revision: https://phab.mercurial-scm.org/D5232
author Augie Fackler <augie@google.com>
date Tue, 06 Nov 2018 11:18:12 -0500
parents 4fe63b573791
children 5c14bf0c5be3
comparison
equal deleted inserted replaced
40559:26bab5c03e4c 40560:8c1f36bf2d3e
49 int depth; /* maximum depth of tree */ 49 int depth; /* maximum depth of tree */
50 int splits; /* # splits performed */ 50 int splits; /* # splits performed */
51 } nodetree; 51 } nodetree;
52 52
53 typedef struct { 53 typedef struct {
54 PyObject_HEAD 54 PyObject_HEAD /* ; */
55 nodetree nt; 55 nodetree nt;
56 } nodetreeObject; 56 } nodetreeObject;
57 57
58 /* 58 /*
59 * This class has two behaviors. 59 * This class has two behaviors.