C1144: Multiple restrict declaration makes no sense

[DISABLE, INFORMATION, WARNING , ERROR]

Description

The restrict qualifier should only be applied once and not several times.

Example
  int * restrict restrict pointer;

  
Tips

Only specify restrict once.