Ignore:
Timestamp:
Jan 14, 2010, 5:46:24 PM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
591f15
Parents:
a34fab (diff), 1ec554 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'FixTemplatedMinMax' into FixFillingWithMolecule

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/helpers.hpp

    ra34fab ra922f3  
    8181 * \return greater of the two (by operator>())
    8282 */
    83 template <typename T> T Max(T &x, T &y)
     83template <typename T> T Max(T x, T y)
    8484{
    8585  if (x > y)
     
    9393 * \return smaller of the two (by operator<())
    9494 */
    95 template <typename T> T Min(T &x, T &y)
     95template <typename T> T Min(T x, T y)
    9696{
    9797  if (x < y)
Note: See TracChangeset for help on using the changeset viewer.