Differences From Artifact [0c676ca3ee]:
- File src/path.c — part of check-in [336e1355b9] at 2012-07-27 00:26:26 on branch trunk — Fix another faulty though harmless memset() initialization. (user: drh size: 14560) [more...]
To Artifact [59e624a395]:
- File src/path.c — part of check-in [eec11147cf] at 2012-10-05 13:44:55 on branch trunk — Enhancements to the "bisect" command: (1) Create alias "ls" for the "vlist" subcommand. (2) Show an abbreviated listing unless the --all option is used. (3) Automatically show the abbreviated listing after each "next". (user: drh size: 14633) [more...]
| ︙ | |||
24 25 26 27 28 29 30 31 32 33 34 35 36 37 | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | + |
#if INTERFACE
/* Nodes for the paths through the DAG.
*/
struct PathNode {
int rid; /* ID for this node */
u8 fromIsParent; /* True if pFrom is the parent of rid */
u8 isPrim; /* True if primary side of common ancestor */
u8 isHidden; /* Abbreviate output in "fossil bisect ls" */
PathNode *pFrom; /* Node we came from */
union {
PathNode *pPeer; /* List of nodes of the same generation */
PathNode *pTo; /* Next on path from beginning to end */
} u;
PathNode *pAll; /* List of all nodes */
};
|
| ︙ |