Skip to content

Commit

Permalink
Add Wno-deprecated-anon-enum-enum-conversion to macOS (#202)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThadHouse authored May 27, 2024
1 parent f4aa3a0 commit 73b596e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,8 @@ public static class DefaultArguments {

public final List<String> macCompilerArgs = List.of("-std=c++20", "-pedantic", "-fPIC", "-Wno-unused-parameter",
"-Wno-error=deprecated-enum-enum-conversion", "-Wno-missing-field-initializers",
"-Wno-unused-private-field", "-Wno-unused-const-variable", "-Wno-error=c11-extensions", "-pthread");
"-Wno-unused-private-field", "-Wno-unused-const-variable", "-Wno-error=c11-extensions", "-pthread",
"-Wno-deprecated-anon-enum-enum-conversion");
public final List<String> macCCompilerArgs = List.of("-pedantic", "-fPIC", "-Wno-unused-parameter",
"-Wno-missing-field-initializers", "-Wno-unused-private-field", "-Wno-fixed-enum-extension");
public final List<String> macObjcppCompilerArgs = List.of("-std=c++20", "-stdlib=libc++", "-fobjc-weak",
Expand Down

0 comments on commit 73b596e

Please sign in to comment.