c++ clang: Compile -Wno-null-dereference

This is a mitigation for issue
https://github.com/Microsoft/bond/issues/536. A proper fix is still
needed.

Closes https://github.com/Microsoft/bond/pull/598
This commit is contained in:
Ted Stein 2017-09-07 12:01:13 -07:00 коммит произвёл Christopher Warrington
Родитель 1127832811
Коммит ec14c17ae6
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -149,6 +149,7 @@ cxx_add_compile_options(Clang
--std=c++11
-Wall
-Werror
-Wno-null-dereference
-Wno-unknown-warning-option
-Wno-unused-local-typedefs)
@ -158,6 +159,7 @@ cxx_add_compile_options(AppleClang
--std=c++11
-Wall
-Werror
-Wno-null-dereference
-Wno-unknown-warning-option
-Wno-unused-local-typedefs)