It means you're passing the variable by reference.
In fact, in a declaration of a type, it means reference, just like:
int x = 42; int& y = x;
declares a reference to x, called y.
x
y
2.1m questions
2.1m answers
60 comments
57.0k users