Changeset 1505
- Timestamp:
- Aug 30, 2012, 12:39:37 AM (10 years ago)
- Location:
- trunk/yat
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/CommandLine.h
r1498 r1505 2 2 #define _theplu_yat_utility_commandline_ 3 3 4 //$Id: CommandLine.h 28 08 2012-08-05 23:40:30Z peter $4 //$Id: CommandLine.h 2817 2012-08-29 00:38:17Z peter $ 5 5 6 6 /* 7 7 Copyright (C) 2007, 2008, 2009 Jari Häkkinen, Peter Johansson 8 Copyright (C) 2010, 2011 Peter Johansson8 Copyright (C) 2010, 2011, 2012 Peter Johansson 9 9 10 10 This file is part of the yat library, http://dev.thep.lu.se/yat -
trunk/yat/SegmentSet.h
r1504 r1505 2 2 #define theplu_yat_utility_segment_set 3 3 4 // $Id: SegmentSet.h 1503 2012-08-28 13:11:53Z jari $4 // $Id: SegmentSet.h 2819 2012-08-29 20:56:39Z jari $ 5 5 6 6 /* -
trunk/yat/SegmentTree.h
r1504 r1505 2 2 #define theplu_yat_utility_segment_tree 3 3 4 // $Id: SegmentTree.h 1498 2012-08-27 06:34:11Z peter $4 // $Id: SegmentTree.h 2788 2012-07-25 22:51:16Z peter $ 5 5 6 6 /* -
trunk/yat/utility.h
r1463 r1505 2 2 #define _theplu_yat_utility_utility_ 3 3 4 // $Id: utility.h 2 673 2011-12-03 00:30:12Z peter $4 // $Id: utility.h 2818 2012-08-29 01:52:40Z peter $ 5 5 6 6 /* … … 34 34 #include "deprecate.h" 35 35 #include "Exception.h" 36 #include "yat_assert.h" 36 37 37 38 #include <algorithm> … … 377 378 return true; 378 379 } 379 if (std::numeric_limits<T>::is_signed && is_equal(s, "-inf")) { 380 if (is_equal(s, "-inf")) { 381 // unsigned types are caught in prologue 382 YAT_ASSERT(std::numeric_limits<T>::is_signed); 380 383 result = -std::numeric_limits<T>::infinity(); 381 384 return true;
Note: See TracChangeset
for help on using the changeset viewer.