Tagged Questions

34
votes
7answers
664 views

Are there cases where a typedef is absolutely necessary?

Consider the following excerpt from the safe bool idiom: typedef void (Testable::*bool_type)() const; operator bool_type() const; Is it possible to declare the conversion function without the ...
2
votes
2answers
241 views

A simple question about type coercion in C++

Given a function prototype, and a type definition: int my_function(unsigned short x); typedef unsigned short blatherskite; Is the following situation defined by standard: int main(int argc, char** ...
2
votes
4answers
2k views

C++ user-defined conversion operators without classes?

In C++ is it possible to define conversion operators which are not class members? I know how to do that for regular operators (such as +), but not for conversion operators. Here is my use case: I ...
1
vote
2answers
522 views

Bitstream to Float Type Coercion

I'm having trouble getting the following code to work correctly. Using an online IEEE-754 converter, I wrote out (by hand) to the testData.txt file that is read with the bit string that should ...
0
votes
5answers
2k views

Coercing template class with operator T* when passing as T* argument of a function template

Assume I have a function template like this: template<class T> inline void doStuff(T* arr) { // stuff that needs to use sizeof(T) } Then in another .h filee I have a template class Foo that ...