C1100: Reference to void illegal

[ERROR]

Description

The specified identifier was declared as a reference to void.

Example
  void &vr;  // error;

  
Tips

Don not declare references to a void type.