UnityEditor.XCodeEditor.XCProject.GccEnableObjCExceptions C# (CSharp) Method

GccEnableObjCExceptions() public method

public GccEnableObjCExceptions ( string value ) : bool
value string
return bool
        public bool GccEnableObjCExceptions(string value)
        {
            foreach( KeyValuePair<string, XCBuildConfiguration> buildConfig in buildConfigurations ) {
                buildConfig.Value.GccEnableObjCExceptions( value );
            }
            modified = true;
            return modified;
        }