mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
Refactor to stop using iterator definitions in types.h (#9275)
* clean up iterator defs in types.h * do not use auto for inline constexpr * restore undef max,min * restore types.h declarations
This commit is contained in:
committed by
GitHub
parent
169a1b2b67
commit
92d5d2c657
@@ -175,17 +175,6 @@ void recurseWalkRange(
|
||||
}
|
||||
}
|
||||
|
||||
void dumpVIV(VECT_INT_VECT v) {
|
||||
VECT_INT_VECT::iterator i;
|
||||
INT_VECT::iterator j;
|
||||
for (i = v.begin(); i != v.end(); i++) {
|
||||
for (j = i->begin(); j != i->end(); j++) {
|
||||
std::cout << *j << " ";
|
||||
}
|
||||
std::cout << std::endl;
|
||||
}
|
||||
}
|
||||
|
||||
PATH_LIST
|
||||
extendPaths(int *adjMat, unsigned int dim, const PATH_LIST &paths,
|
||||
int allowRingClosures = -1, double *distMat = nullptr) {
|
||||
|
||||
Reference in New Issue
Block a user