Commit 1d33c219 by Corentin Wallez Committed by Commit Bot

Fix standalone mac compilation

BUG= Change-Id: I225bd1693f595a64179b8e500cb1e7101fd2e197 Reviewed-on: https://chromium-review.googlesource.com/766472 Commit-Queue: Geoff Lang <geofflang@chromium.org> Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org>
parent 740aa41d
...@@ -1244,7 +1244,7 @@ bool TParseContext::checkCanUseExtension(const TSourceLoc &line, TExtension exte ...@@ -1244,7 +1244,7 @@ bool TParseContext::checkCanUseExtension(const TSourceLoc &line, TExtension exte
{TExtension::EXT_geometry_shader, TExtension::OES_geometry_shader}}; {TExtension::EXT_geometry_shader, TExtension::OES_geometry_shader}};
return checkCanUseOneOfExtensions(line, extensions); return checkCanUseOneOfExtensions(line, extensions);
} }
return checkCanUseOneOfExtensions(line, std::array<TExtension, 1u>{extension}); return checkCanUseOneOfExtensions(line, std::array<TExtension, 1u>{{extension}});
} }
// ESSL 3.00.6 section 4.8 Empty Declarations: "The combinations of qualifiers that cause // ESSL 3.00.6 section 4.8 Empty Declarations: "The combinations of qualifiers that cause
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment