Skip to content

Commit

Permalink
build: ignore semicolon errors on build
Browse files Browse the repository at this point in the history
  • Loading branch information
trevnorris committed Oct 4, 2024
1 parent a3720ae commit 2789dd1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion deps/opentelemetry-cpp/otlp-http-exporter.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,9 @@
'-fexceptions',
'-fvisibility=hidden',
'-pedantic',
'--std=c++17'
'--std=c++17',
'-Wno-error',
'-Wno-c++98-compat-extra-semi'
],
'msvs_settings': {
},
Expand Down
4 changes: 3 additions & 1 deletion deps/protobuf/protobuf.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@
'-fexceptions',
'-fvisibility=hidden',
'-pedantic',
'--std=c++17'
'--std=c++17',
'-Wno-error',
'-Wno-c++98-compat-extra-semi'
],
'msvs_settings': {
},
Expand Down

0 comments on commit 2789dd1

Please sign in to comment.