Use static_cast for that.
The old style casts are considered bad form now, though I've tended to stick with them due to the compact syntax. The new cast style is a bit more verbose, though that is intentional. It's best to avoid casts when you can. If you can't avoid them, then at least make it easy to search for them. (Try using a text search for the old style cast). It helps with hunting down bugs, since casts are ways of defeating the type checking system, and so a good source for errors. Splitting the old cast style into distinct new style casts also makes sure you're doing the minimum and intended conversion operation, rather than conflating a bunch of different things with one syntax.
The next step will be to learn the differences between the new style casts.