| 1129 | } |
| 1130 | |
| 1131 | void add(const PathName& p, bool hasSpecData) |
| 1132 | { |
| 1133 | // Here we assume that init code runs once, i.e. plugins do not repeat |
| 1134 | if (hasSpecData) |
| 1135 | { |
| 1136 | fb_assert(plugins.getCount() < 64); |
| 1137 | hasSpecificData |= (one << plugins.getCount()); |
| 1138 | } |
| 1139 | plugins.add() = p; |
| 1140 | } |
| 1141 | |
| 1142 | void value(PathName& to) const |
| 1143 | { |
no test coverage detected