Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- #ifdef USE_DOUBLES
- typedef double user_data_t;
- #else
- typedef float user_data_t;
- #endif
- user_data_t xx;
- int main() {
- cout << typeid(xx).name() << endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment