Changeset 25aa214 for src/unittests/MoleculeUnitTest.cpp
- Timestamp:
- Dec 19, 2025, 11:29:38 PM (9 days ago)
- Branches:
- Candidate_v1.7.1, stable
- Children:
- 98ad30
- Parents:
- d2be22
- git-author:
- Frederik Heber <frederik.heber@…> (11/16/25 11:19:01)
- git-committer:
- Frederik Heber <frederik.heber@…> (12/19/25 23:29:38)
- File:
-
- 1 edited
-
src/unittests/MoleculeUnitTest.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/unittests/MoleculeUnitTest.cpp
rd2be22 r25aa214 64 64 65 65 atomVector.resize((size_t)MaxAtoms); 66 std::generate_n(atomVector.begin(), MaxAtoms, 67 boost::bind(&World::createAtom, boost::ref(World::getInstance()))); 66 std::generate_n(atomVector.begin(), MaxAtoms, boost::bind( 67 static_cast<atom* (World::*)(World::CreateAtomNotificationType)>(&World::createAtom), 68 World::getPointer(), 69 World::CreateAtomNotificationType::NOTIFY_ON_CREATE_ATOM) 70 ); 68 71 std::for_each(atomVector.begin(), atomVector.end(), 69 72 boost::bind(static_cast<void (AtomInfo::*)(int)>(&AtomInfo::setType), _1, (atomicNumber_t)1));
Note:
See TracChangeset
for help on using the changeset viewer.
