Skip to content

Cxx 2496 #907

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 31 commits into from
Dec 20, 2022
Merged
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
bb0a2dd
running tests
kkloberdanz Nov 29, 2022
8289817
make it work when no session is specified
kkloberdanz Dec 7, 2022
300c1e7
remove print
kkloberdanz Dec 7, 2022
cd9d48b
got state collections working
kkloberdanz Dec 8, 2022
7cbfd30
added encrypted_fields_map following schema_map pattern
kkloberdanz Dec 12, 2022
837ebea
added getter method
kkloberdanz Dec 12, 2022
5aef612
setting _encrypted_fields_map in mongoc
kkloberdanz Dec 12, 2022
a5169c4
dont need this
kkloberdanz Dec 12, 2022
df88fb2
test appeared to be checking for the wrong index before. now it check…
kkloberdanz Dec 12, 2022
c75c32a
not needed
kkloberdanz Dec 12, 2022
19c16d3
Merge branch 'master' into CXX-2496
kkloberdanz Dec 13, 2022
31bcbd3
All tests passed
kkloberdanz Dec 13, 2022
30a5229
added TODO comment
kkloberdanz Dec 13, 2022
fd96103
Merge branch 'master' into CXX-2496
kkloberdanz Dec 13, 2022
59980a1
fmt
kkloberdanz Dec 13, 2022
22c6856
refactor so collection options variant of drop calls the common _drop…
kkloberdanz Dec 14, 2022
4b49bc7
doc comments
kkloberdanz Dec 14, 2022
03dc4cd
space
kkloberdanz Dec 14, 2022
138d98b
ignore -Wmaybe-uninitialized on powerpc
kkloberdanz Dec 15, 2022
44b2a5a
retrigger build
kkloberdanz Dec 16, 2022
90c7354
Revert "retrigger build"
kkloberdanz Dec 16, 2022
9d5813e
Merge branch 'master' into CXX-2496
kkloberdanz Dec 16, 2022
90c4abc
-Wno-error=maybe-uninitialized instead of -Wno-maybe-uninitialized
kkloberdanz Dec 16, 2022
352d13e
typo
kkloberdanz Dec 16, 2022
a62bdc7
move ppc64le compiler quirk work around to .mci.yml rather than CMake…
kkloberdanz Dec 19, 2022
4c9884a
Update src/mongocxx/collection.hpp
kkloberdanz Dec 19, 2022
dbb258b
Update src/mongocxx/collection.hpp
kkloberdanz Dec 19, 2022
5b98ec2
Update src/mongocxx/test/spec/operation.cpp
kkloberdanz Dec 19, 2022
c31e334
comment on why power8 needs special flags
kkloberdanz Dec 19, 2022
526ca26
Merge branch 'CXX-2496' of github.com:kkloberdanz/mongo-cxx-driver in…
kkloberdanz Dec 19, 2022
3a35d1b
incorporate review feedback to add an additional optional argument in…
kkloberdanz Dec 19, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ else()
set(COMPILER_HAS_DEPRECATED_ATTR true)
endif()

if(CMAKE_SYSTEM_PROCESSOR STREQUAL "ppc64le")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-error=maybe-uninitialized")
endif()

set (CMAKE_SKIP_BUILD_RPATH false)
set (CMAKE_BUILD_WITH_INSTALL_RPATH false)
set (CMAKE_INSTALL_RPATH_USE_LINK_PATH true)
Expand Down
Loading