llvmpipe: Remove stray ## operator for MSVC

Reviewed-by: Jesse Natalie <jenatali@microsoft.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6162>
This commit is contained in:
James Park 2021-04-22 13:40:15 -07:00 committed by Marge Bot
parent 6de0317e5a
commit d7da6000fe

View file

@ -296,7 +296,7 @@ const float fract_values[] = {
#ifdef _MSC_VER
#define WRAP(func) \
static float \
wrap_ ## func ## (float x) \
wrap_ ## func(float x) \
{ \
return func(x); \
}