forked from hsutter/gcpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update gsl submodule; fix bitflags::all_false
Fixes hsutter#23.
- Loading branch information
1 parent
9da9af2
commit d2b3e1d
Showing
4 changed files
with
26 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule gsl
updated
30 files
+2 −0 | .gitignore | |
+1 −1 | .gitmodules | |
+105 −30 | .travis.yml | |
+42 −13 | CMakeLists.txt | |
+98 −0 | GSL.natvis | |
+14 −9 | README.md | |
+48 −0 | appveyor.yml | |
+0 −172 | gsl/gsl | |
+196 −0 | include/gsl/gsl | |
+61 −0 | include/gsl/gsl_algorithm | |
+36 −16 | include/gsl/gsl_assert | |
+13 −20 | include/gsl/gsl_byte | |
+32 −39 | include/gsl/gsl_util | |
+367 −342 | include/gsl/multi_span | |
+181 −116 | include/gsl/span | |
+118 −134 | include/gsl/string_span | |
+52 −27 | tests/CMakeLists.txt | |
+210 −0 | tests/algorithm_tests.cpp | |
+18 −20 | tests/assertion_tests.cpp | |
+80 −36 | tests/at_tests.cpp | |
+83 −86 | tests/bounds_tests.cpp | |
+26 −12 | tests/byte_tests.cpp | |
+334 −323 | tests/multi_span_tests.cpp | |
+197 −45 | tests/notnull_tests.cpp | |
+19 −23 | tests/owner_tests.cpp | |
+853 −657 | tests/span_tests.cpp | |
+557 −548 | tests/strided_span_tests.cpp | |
+105 −107 | tests/string_span_tests.cpp | |
+1 −1 | tests/unittest-cpp | |
+8 −12 | tests/utils_tests.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters