Skip to content

Commit

Permalink
disable the same warnings that opencl-icd-loader disables (KhronosGro…
Browse files Browse the repository at this point in the history
…up#297)

Merged as discussed on slack Jun 28th 2024.
  • Loading branch information
bashbaug authored Jun 28, 2024
1 parent 3f452e6 commit afbd082
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,10 @@ jobs:
UseMultiToolTask: true # Better parallel MSBuild execution
EnforceProcessCountAcrossBuilds: 'true' # -=-
MultiProcMaxCount: '3' # -=-
CFLAGS: /W4 /WX
# C4152: nonstandard extension, function/data pointer conversion in expression
# C4201: nonstandard extension used: nameless struct/union
# C4310: cast truncates constant value
CFLAGS: /W4 /WX /wd4152 /wd4201 /wd4310
CXXFLAGS: /W4 /WX

steps:
Expand Down

0 comments on commit afbd082

Please sign in to comment.