Skip to content

Commit aa4ce5a

Browse files
committed
Work around MSVC internal compiler error when compiling SymbolTable_autogen.cpp
1 parent 8117c66 commit aa4ce5a

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

src/compiler/translator/SymbolTable_ESSL_autogen.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -1314,7 +1314,11 @@ constexpr const ImmutableString yuv_2_rgb("yuv_2_rgb");
13141314
namespace BuiltInVariable
13151315
{
13161316

1317-
constexpr const unsigned int kArraySize4[1] = {4};
1317+
const unsigned int four = 4;
1318+
constexpr const unsigned int *kArraySize4 = &four;
1319+
// Causes MSVC to crap itself
1320+
//constexpr const unsigned int kArraySize4[1] = {4};
1321+
13181322

13191323
constexpr const TVariable kangle_BaseInstance(
13201324
BuiltInId::angle_BaseInstance,

src/compiler/translator/SymbolTable_autogen.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -2587,7 +2587,10 @@ constexpr const ImmutableString yuv_2_rgb("yuv_2_rgb");
25872587
namespace BuiltInVariable
25882588
{
25892589

2590-
constexpr const unsigned int kArraySize4[1] = {4};
2590+
const unsigned int four = 4;
2591+
constexpr const unsigned int *kArraySize4 = &four;
2592+
// Causes MSVC to crap itself
2593+
//constexpr const unsigned int kArraySize4[1] = {4};
25912594

25922595
constexpr const TVariable kangle_BaseInstance(
25932596
BuiltInId::angle_BaseInstance,

0 commit comments

Comments
 (0)