| 149 | } |
| 150 | |
| 151 | txConflictEntry* fxNewConflictEntry(txLinker* linker, txColorTable* colorTable) |
| 152 | { |
| 153 | txConflictEntry* result = fxNewLinkerChunkClear(linker, sizeof(txConflictEntry)); |
| 154 | result->colorTable = colorTable; |
| 155 | return result; |
| 156 | } |
| 157 | |
| 158 | txConflictTable* fxNewConflictTable(txLinker* linker, txID id) |
| 159 | { |
no test coverage detected