Fix multi-line macro by adding line continuation.

git-svn-id: http://skia.googlecode.com/svn/trunk@2195 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
bsalomon@google.com 2011-08-30 18:05:17 +00:00
parent 69f2e05b58
commit dec9f2d351

View File

@ -168,7 +168,7 @@ extern void GrGLClearErr(const GrGLInterface* gl);
#if GR_GL_LOG_CALLS
extern bool gLogCallsGL;
#define GR_GL_LOG_CALLS_IMPL(X)
#define GR_GL_LOG_CALLS_IMPL(X) \
if (gLogCallsGL) \
GrPrintf(GR_FILE_AND_LINE_STR "GL: " #X "\n")
#else