C1127: Constant void type probably makes no sense

[INFORMATION]

Description

A pointer/reference to a constant void type was declared

Example
  const void *cvp;   // warning (pointer to constant void)

  
  void *const vpc;  // no warning (constant pointer)

  
Tips

A pointer to a constant type is a different thing than a constant pointer.