Tagged Questions
7
votes
7answers
199 views
What is the largest value sizeof(T) can yield?
At first one might think std::numeric_limits<size_t>::max(), but if there was an object that huge, could it still offer a one-past-the-end pointer? I guess not. Does that imply the largest value ...
6
votes
5answers
415 views
What should happen to the negation of a size_t (i.e. `-sizeof(struct foo)`))?
I'm dealing with some code at work that includes an expression of the form
-(sizeof(struct foo))
i.e. the negation of a size_t, and I'm unclear on what the C and C++ standards require of compilers ...
3
votes
4answers
9k views
What's sizeof(size_t) on 32-bit vs the various 64-bit data models?
On a 64-bit system, sizeof(unsigned long) depends on the data model implemented by the system, for example, it is 4 bytes on LLP64 (Windows), 8 bytes on LP64 (Linux, etc.). What's sizeof(size_t) ...
1
vote
3answers
538 views
Should I always include stddef.h if I use sizeof and size_t
if I'm using the sizeof operator and making use of size_t in my code, do I have necessarily have to include stddef.h? I haven't included stddef.h, and my code compiles without warning with both ...
0
votes
2answers
95 views
Objective-C Runtime: What to put for size & alignment for class_addIvar?
The Objective-C Runtime provides the class_addIvar C function:
BOOL class_addIvar(Class cls, const char *name, size_t size,
uint8_t alignment, const char *types)
What do I put ...
0
votes
3answers
107 views
Casting/converting rom size_t to uint8_t in C++?
I'm trying to write some code that uses boost::asio's sockets to send a message from one end (the client) to another (the server).
My particular goal right now is to prepend every message being sent ...