Skip to content
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

Add MLSMessage framework #262

Merged
merged 44 commits into from
Jul 25, 2022
Merged
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
f4c6425
Add MLSMessage framework
bifurcation Apr 20, 2022
fe8ff94
Fix build errors
bifurcation Apr 28, 2022
0d1e1ac
Revert refactor of confirmation tag computation
bifurcation Apr 28, 2022
b3f6876
clang-tidy
bifurcation Apr 28, 2022
f993b7c
CI errors
bifurcation Apr 28, 2022
13b177c
CI errors
bifurcation Apr 28, 2022
0b7f211
Apply suggestions from code review
bifurcation Apr 29, 2022
4d87cca
Respond to @bifurcation review comments
bifurcation Apr 29, 2022
7f34c67
Update the interop harness
bifurcation Apr 29, 2022
e1c5080
CI errors
bifurcation Apr 29, 2022
e57636c
clang-format
bifurcation Apr 29, 2022
641b75a
Respond to comments from @suhasHere
bifurcation Apr 29, 2022
d07e024
CI errors
bifurcation Jun 10, 2022
3f63909
Noop commit to trigger CI
bifurcation Jul 22, 2022
9cbc05a
Fix some clang-tidy errors
bifurcation Jul 22, 2022
2d2c438
More clang-tidy errors
bifurcation Jul 22, 2022
c08ba67
clang-format
bifurcation Jul 22, 2022
19521e8
Ignore cast formatting errors, too many false positives
bifurcation Jul 22, 2022
db14849
Revert "More clang-tidy errors"
bifurcation Jul 22, 2022
d6c928b
Revert "Fix some clang-tidy errors"
bifurcation Jul 22, 2022
8575c7a
Cleanup from reverts
bifurcation Jul 22, 2022
a3d4978
Add missing comma in .clang-tidy
bifurcation Jul 22, 2022
5ab3954
Adjust NOLINT
bifurcation Jul 22, 2022
843fc65
Update clang-format-action to latest
bifurcation Jul 22, 2022
2a03c56
Format the interop harness
bifurcation Jul 22, 2022
f32dc00
Apply clang-format-14
bifurcation Jul 22, 2022
9318f64
Suppress some clang-tidy warnings
bifurcation Jul 22, 2022
db1394a
More clang-tidy
bifurcation Jul 22, 2022
b9a88cb
More clang-tidy
bifurcation Jul 22, 2022
241b250
clang-format
bifurcation Jul 22, 2022
da161e5
Merge branch 'update-format' into mlsmessage
bifurcation Jul 22, 2022
fb0c1fd
Enable ASan on Windows
bifurcation Jul 22, 2022
807894f
Enable stricter compilation on Windows
bifurcation Jul 22, 2022
164bc6e
Dial back MSVC errors when they stop making sense
bifurcation Jul 22, 2022
44fa481
Revert some stuff
bifurcation Jul 22, 2022
3e378a1
Don't have global objects that use the heap
bifurcation Jul 23, 2022
89927ce
Attempt a different bytes import constructor
bifurcation Jul 24, 2022
dbf1f19
Actually use the new ctor
bifurcation Jul 24, 2022
463d98e
Properly declare sanitization with MSVC
bifurcation Jul 24, 2022
272d188
Don't use static const closures with std::visit
bifurcation Jul 24, 2022
f11255a
Fix compile errors
bifurcation Jul 24, 2022
df45c30
More static const closures
bifurcation Jul 24, 2022
12ded1c
clang-format
bifurcation Jul 24, 2022
4548316
Merge branch 'msvc' into mlsmessage
bifurcation Jul 24, 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
Prev Previous commit
Next Next commit
Suppress some clang-tidy warnings
bifurcation committed Jul 22, 2022
commit 9318f6452d995a1538007b4cb93fea1bd0b86b62
8 changes: 5 additions & 3 deletions .clang-tidy
Original file line number Diff line number Diff line change
@@ -2,24 +2,26 @@
Checks: '*,
-altera-*,
-fuchsia-*,
-bugprone-easily-swappable-parameters,
-cert-err58-cpp,
-cppcoreguidelines-avoid-magic-numbers,
-cppcoreguidelines-avoid-non-const-global-variables,
-cppcoreguidelines-non-private-member-variables-in-classes,
-cppcoreguidelines-special-member-functions,
-google-build-using-namespace,
-google-readability-casting,
-google-runtime-references,
-hicpp-no-assembler,
-hicpp-special-member-functions,-warnings-as-errors,
-llvmlibc-implementation-in-namespace,
-llvmlibc-callee-namespace,
-llvmlibc-implementation-in-namespace,
-llvmlibc-restrict-system-libc-headers,
-misc-non-private-member-variables-in-classes,
-modernize-use-nodiscard,
-modernize-use-trailing-return-type,
-readability-magic-numbers,
-readability-function-cognitive-complexity,
-bugprone-easily-swappable-parameters,
-readability-identifier-length,
-readability-magic-numbers,
'
WarningsAsErrors: '*'
HeaderFilterRegex: '*'