-
Notifications
You must be signed in to change notification settings - Fork 20
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
Events per signal instance #367
Changes from 11 commits
8bba817
8e20db6
c36ddfb
6bb52a2
c983b96
ec1e9b3
ecbb9f2
6250c59
15bb1e3
a4f4ee3
492fbf5
5abdb17
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -219,7 +219,7 @@ class RingbufferGenerator extends AbstractTypeGenerator { | |
), | ||
true | ||
)» | ||
«rbRef.code».length++; | ||
++«rbRef.code».length; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is this just a readability issue or did this produce compilation errors? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In general, preincrement > postincrement, since the latter generates a temporary copy ;) |
||
''').addHeader("MitaGeneratedTypes.h", false); | ||
} | ||
} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Ignore everything in this directory | ||
* | ||
# Except the gitignore | ||
!.gitignore | ||
!.gitignore |
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.
Always happy to see those go :)