# | Line 63 | Line 63 | namespace OpenMD { | |
---|---|---|
63 | ||
64 | void CubicLattice::setLatticeConstant(const std::vector<RealType>& lc){ | |
65 | ||
66 | < | if(lc.size() < 1){ |
67 | < | std::cerr << "CubicLattice::setLatticeConstant Error: the size of lattice constant vector is 0" << std::endl; |
66 | > | if(lc.empty()){ |
67 | > | std::cerr << "CubicLattice::setLatticeConstant Error: the lattice constant vector is empty" << std::endl; |
68 | exit(1); | |
69 | } | |
70 | else if (lc.size() > 1){ |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |