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
412 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 ...
0
votes
3answers
106 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 ...