Skip to content

Commit 3806241

Browse files
authored
Add 4324 to ignored warnings (#214)
* Add 4324 to ignored warnings See wpilibsuite/allwpilib#7028 * update version
1 parent 41001f7 commit 3806241

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ java {
1313

1414
allprojects {
1515
group = "edu.wpi.first"
16-
version = "2025.2.0"
16+
version = "2025.3.0"
1717

1818
if (project.hasProperty('publishVersion')) {
1919
version = project.publishVersion

src/main/java/edu/wpi/first/nativeutils/WPINativeUtilsExtension.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public static class DefaultArguments {
3939

4040
public final List<String> windowsCompilerArgs = List.of("/EHsc", "/FS", "/Zc:inline", "/wd4244", "/wd4267",
4141
"/wd4146", "/wd4996", "/Zc:throwingNew", "/D_CRT_SECURE_NO_WARNINGS", "/std:c++20", "/permissive-",
42-
"/utf-8", "/bigobj", "/Zc:__cplusplus", "/Zc:preprocessor", "/wd5105"); // 5105 is thrown by windows sdk headers
42+
"/utf-8", "/bigobj", "/Zc:__cplusplus", "/Zc:preprocessor", "/wd5105", "/wd4324"); // 5105 is thrown by windows sdk headers
4343
public final List<String> windowsCCompilerArgs = List.of("/FS", "/Zc:inline", "/D_CRT_SECURE_NO_WARNINGS");
4444
public final List<String> windowsReleaseCompilerArgs = List.of("/O2", "/MD");
4545
public final List<String> windowsDebugCompilerArgs = List.of("/Od", "/MDd");

testing/cpp/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import edu.wpi.first.toolchain.NativePlatforms
22

33
plugins {
44
id "cpp"
5-
id "edu.wpi.first.NativeUtils" version "2025.2.0"
5+
id "edu.wpi.first.NativeUtils" version "2025.3.0"
66
}
77

88
nativeUtils.addWpiNativeUtils()

0 commit comments

Comments
 (0)