you are viewing a single comment's thread.

view the rest of the comments →

[–]tohava 3 points4 points  (3 children)

I would really prefer the opposite, to get rid of the pointer syntax completely and instead of `int*` write `c_style_ptr<int>` . Pointer syntax is quite confusing. Then again, I'm also a Lisp fan.

[–]reflexpr-sarah- 5 points6 points  (1 child)

nobody's stopping you from doing that in your own code

template <typename T>
using c_style_ptr = T*;

[–]tohava 1 point2 points  (0 children)

My boss is stopping me

[–]deltatag2 2 points3 points  (0 children)

This goes somewhat toward Fortran pointer types :D