File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 66/* By: cgodecke <cgodecke@student.42wolfsburg. +#+ +:+ +#+ */
77/* +#+#+#+#+#+ +#+ */
88/* Created: 2023/11/14 16:08:54 by cgodecke #+# #+# */
9- /* Updated: 2023/12/04 15:55:11 by cgodecke ### ########.fr */
9+ /* Updated: 2023/12/05 10:25:27 by cgodecke ### ########.fr */
1010/* */
1111/* ************************************************************************** */
1212
2020# include < limits>
2121# include < cmath>
2222
23- # define MIN_INT -2147483648
24- # define MAX_INT 2147483647
25- # define MIN_FLOAT -3.40282e+38
26- # define MAX_FLOAT 3.40282e+38
27- # define MIN_DOUBLE -1.79769e+308
28- # define MAX_DOUBLE 1.79769e+308
23+ # define MIN_INT std::numeric_limits< int >::min() // -2147483648
24+ # define MAX_INT std::numeric_limits< int >::max() // 2147483647
25+ # define MIN_FLOAT std::numeric_limits< float >::min() // -3.40282e+38
26+ # define MAX_FLOAT std::numeric_limits< float >::max() // 3.40282e+38
27+ # define MIN_DOUBLE std::numeric_limits< double >::min() // -1.79769e+308
28+ # define MAX_DOUBLE std::numeric_limits< double >::max() // 1.79769e+308
2929
3030enum e_type
3131{
Original file line number Diff line number Diff line change 66/* By: cgodecke <cgodecke@student.42wolfsburg. +#+ +:+ +#+ */
77/* +#+#+#+#+#+ +#+ */
88/* Created: 2023/11/14 16:07:31 by cgodecke #+# #+# */
9- /* Updated: 2023/11/27 17:26:34 by cgodecke ### ########.fr */
9+ /* Updated: 2023/12/05 10:27:35 by cgodecke ### ########.fr */
1010/* */
1111/* ************************************************************************** */
1212
You can’t perform that action at this time.
0 commit comments