Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
179 views

Difference in digits10 between GCC and MSVC

I have the following code: #include <iostream> #include <limits> int main() { std::cout << std::numeric_limits<unsigned long long>::digits10 << std::endl; return ...
5
votes
5answers
233 views

Looping on a closed range

How would you fix this code? template <typename T> void closed_range(T begin, T end) { for (T i = begin; i <= end; ++i) { // do something } } T is constrained to be an ...
5
votes
2answers
2k views

warning C4003 and errors C2589 and C2059 on: x = std::numeric_limits<int>::max();

This line works correctly in a small test program, but in the program for which I want it, I get the following compiler complaints: #include <limits> x = std::numeric_limits<int>::max(); ...
3
votes
2answers
894 views

Where are the limits for Qt types?

Regularly, I could reference limits.h to see what the max is for a certain type, like an int or long. In Qt, there are types like qlonglong. Is there a header file and/or documentation that can be ...
3
votes
2answers
2k views

Why is FLT_MIN equal to zero?

limits.h specifies limits for non-floating point math types, e.g. INT_MIN and INT_MAX. These values are the most negative and most positive values that you can represent using an int. In float.h, ...
3
votes
2answers
3k views

maximum value of int

is there any code to find the maximum value of integer (which is acccording to the compiler) in c/c++ like Integer.MaxValue function in java
2
votes
3answers
203 views

How does sizeof work for int types?

I have a small program which compares (1) sizeof, (2) numeric_limits::digits, (3) and the results of a loop in an effort to make sure they all report the same thing regarding the size of the "int ...
2
votes
1answer
1k views

linux g++, ‘numeric_limits’ was not declared in this scope, no matching function for call to ‘max()’

I compiled this code at home on my mac w/ xcode and there was no provblem. I compile it at school with g++ on linux and I get these errors: :‘numeric_limits’ is not a member of std :expected ...
2
votes
1answer
201 views

Templates and std::numeric_limits

I have a class called Atomic which is basically an _Atomic_word plus methods that call the gcc atomic builtins. class Atomic{ mutable volatile _Atomic_word value_; public: Atomic(int value ...
1
vote
3answers
72 views

Using numeric_limits to default parameter values

I have a template statistics class that has range parameters. template <typename T> class limitStats { public: limitStats(T mx, T min) : max(mx), min(mn), range(mx-mn) ...
0
votes
0answers
19 views

MSVC 2008 : Boost property tree fails when retrieving std::numeric_limits::max() floating point values

Using MSVC 2008 / boost 1.48 on windows XP, the following code fails while trying to retrieve the max value from the property tree - note the ever-so-slightly smaller 'working value' is the ...
0
votes
1answer
36 views

objective-c equivalent to c++ numeric_limits::max()

I've gotten used to utilizing the numeric_limits part of the C++ STL for initializing numeric types (int,float, etc.) to their largest possible value. I.e. int i=numeric_limits::max() Is there an ...
0
votes
1answer
247 views

incomplete type used in nested name specifier, Why?

The following code is a part of a fixed-length arithmetic type, i reduced it as much as i can to only contains the problem. namespace MathX { typedef signed int int32; typedef unsigned int uint32; ...