C1027: Reference must be initialized

[ERROR]

Description

A reference was not initialized when it was declared.

Example
  int j;

  
  int& i // = j; missing

  
Tips

Initialize the reference with an object of the same type as the reference points to.