Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
Enclave connections and enclave coordination in the C++ target #1665
Enclave connections and enclave coordination in the C++ target #1665
Changes from 29 commits
ef489d3
d4abdfc
7764cfe
3eeaf50
619a766
b1d6dca
3e45d41
b7f2d00
ae3f4bd
b8cadb8
07adeac
9aaa80e
36fc361
46db052
06f36fd
3fb05f5
d5f90f2
6612910
bd27e1f
9c114c3
85a21ef
e17852d
97632d8
4d8bf85
68e89e6
9cabad2
a7afcee
9626826
58c6b0f
0d0fc3d
a36d8a3
de0af0c
d6c4e5a
814e0bf
3d84b6c
c0b5127
3b49f12
fa0e058
f7261ea
aae5cae
0554c99
a305596
48898a2
b7d0cd1
036625c
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
general question the code generator generates c++ code in a totally different style like what is currently standard in reactor-cpp.
__lf_env
compared it would be probably be namedlf_env_
in the style of reactor-cpp.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We use the
__lf_
prefix for some variables to avoid name clashes. It is unlikely, but if someone would name their state variable or some other reactor componentlf_env_
, we would see compile errors.__
is kind of a protected namespace in C/C++ that is not supposed to be used by users.