1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-26 03:28:02 +02:00

Fixed object initializer warnings

This commit is contained in:
Brian Fiete 2020-08-29 11:56:10 -07:00
parent 10421d99ca
commit f795215b44
13 changed files with 48 additions and 48 deletions

View file

@ -777,7 +777,7 @@ namespace IDE.ui
allocPropEntry.mOnUpdate();
AddPropertiesItem(category, "SIMD Instructions", "mBfSIMDSetting");
AddPropertiesItem(category, "Optimization Level", "mBfOptimizationLevel",
scope String[] { "O0", "O1", "O2", "O3", "Og", "Og+"});
scope String[] ( "O0", "O1", "O2", "O3", "Og", "Og+"));
AddPropertiesItem(category, "LTO Type", "mLTOType");
AddPropertiesItem(category, "No Omit Frame Pointers", "mNoOmitFramePointers");
AddPropertiesItem(category, "Large Strings", "mLargeStrings");
@ -789,17 +789,17 @@ namespace IDE.ui
category.mTextColor = Color.Mult(DarkTheme.COLOR_TEXT, cHeaderColor);
AddPropertiesItem(category, "Debug Info", "mEmitDebugInfo");
AddPropertiesItem(category, "Runtime Checks", "mRuntimeChecks",
scope String[] { "No", "Yes" });
scope String[] ( "No", "Yes" ));
AddPropertiesItem(category, "Dynamic Cast Check", "mEmitDynamicCastCheck",
scope String[] { "No", "Yes" });
scope String[] ( "No", "Yes" ));
AddPropertiesItem(category, "Object Debug Flags", "mEnableObjectDebugFlags",
scope String[] { "No", "Yes" });
scope String[] ( "No", "Yes" ));
AddPropertiesItem(category, "Object Access Check", "mEmitObjectAccessCheck",
scope String[] { "No", "Yes" });
scope String[] ( "No", "Yes" ));
AddPropertiesItem(category, "Realtime Leak Check", "mEnableRealtimeLeakCheck",
scope String[] { "No", "Yes" });
scope String[] ( "No", "Yes" ));
AddPropertiesItem(category, "Enable Hot Compilation", "mAllowHotSwapping",
scope String[] { "No", "Yes" });
scope String[] ( "No", "Yes" ));
AddPropertiesItem(category, "Alloc Stack Trace Depth", "mAllocStackTraceDepth");
category.Open(true, true);