From 152b4391b89e1ca7c2759d2a2c3d4665fec1fe01 Mon Sep 17 00:00:00 2001 From: Gold856 <117957790+Gold856@users.noreply.github.com> Date: Sun, 10 Nov 2024 01:09:14 -0500 Subject: [PATCH] Remove unnecessary symbol exclusions (#1542) --- photon-lib/build.gradle | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/photon-lib/build.gradle b/photon-lib/build.gradle index 08a792e95..3e3fc666f 100644 --- a/photon-lib/build.gradle +++ b/photon-lib/build.gradle @@ -23,25 +23,7 @@ apply from: "${rootDir}/versioningHelper.gradle" nativeUtils { exportsConfigs { - "${nativeName}" { - // From https://github.com/wpilibsuite/allwpilib/blob/a32589831184969939fd3d63f449a2788a0a8542/wpimath/build.gradle#L72 - // Copyright (c) FIRST and other WPILib contributors. - // Open Source Software; you can modify and/or share it under the terms of - // the WPILib BSD license file in the root directory of this project. - x64ExcludeSymbols = [ - '_CT??_R0?AV_System_error', - '_CT??_R0?AVexception', - '_CT??_R0?AVfailure', - '_CT??_R0?AVruntime_error', - '_CT??_R0?AVsystem_error', - '_CTA5?AVfailure', - '_TI5?AVfailure', - '_CT??_R0?AVout_of_range', - '_CTA3?AVout_of_range', - '_TI3?AVout_of_range', - '_CT??_R0?AVbad_cast' - ] - } + "${nativeName}" {} } }