Skip to content

Commit

Permalink
Minor: ignore uninitialized struct field warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
samantharitter committed Jan 11, 2016
1 parent c34c3a9 commit b411759
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .mci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ tasks:
params:
working_dir: "mongo-cxx-driver/build"
script: |
PKG_CONFIG_PATH="/data/tmp/c-driver-install/lib/pkgconfig" /opt/cmake/bin/cmake -DCMAKE_BUILD_TYPE=${build_type} -DCMAKE_INSTALL_PREFIX=./install -DCMAKE_C_FLAGS="-Wall -Wextra -Wno-attributes -Werror" -DCMAKE_CXX_FLAGS="-Wall -Wextra -Wno-attributes -Werror" ..
PKG_CONFIG_PATH="/data/tmp/c-driver-install/lib/pkgconfig" /opt/cmake/bin/cmake -DCMAKE_BUILD_TYPE=${build_type} -DCMAKE_INSTALL_PREFIX=./install -DCMAKE_C_FLAGS="-Wall -Wextra -Wno-attributes -Werror -Wno-error=missing-field-initializers" -DCMAKE_CXX_FLAGS="-Wall -Wextra -Wno-attributes -Werror -Wno-error=missing-field-initializers" ..
make
./src/bsoncxx/test/test_bson
./src/mongocxx/test/test_driver
Expand Down

0 comments on commit b411759

Please sign in to comment.