File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -1314,7 +1314,11 @@ constexpr const ImmutableString yuv_2_rgb("yuv_2_rgb");
1314
1314
namespace BuiltInVariable
1315
1315
{
1316
1316
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
+
1318
1322
1319
1323
constexpr const TVariable kangle_BaseInstance(
1320
1324
BuiltInId::angle_BaseInstance,
Original file line number Diff line number Diff line change @@ -2587,7 +2587,10 @@ constexpr const ImmutableString yuv_2_rgb("yuv_2_rgb");
2587
2587
namespace BuiltInVariable
2588
2588
{
2589
2589
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};
2591
2594
2592
2595
constexpr const TVariable kangle_BaseInstance(
2593
2596
BuiltInId::angle_BaseInstance,
You can’t perform that action at this time.
0 commit comments