When using VC++'s __restrict extension, VA X shows __restrict with a red error underline.
void Foo(void * __restrict a, void * __restrict b)
{
}
Note that __restrict is part of the ISO C99 standard, but that microsoft supports it in C++ as well. It would be nice if VA X did that too.