Last active
August 29, 2015 14:24
-
-
Save vlofgren/50dd4a512416bab96d10 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| struct A { | |
| uint8_t data[80]; | |
| }; | |
| struct B { | |
| uint8_t data[80]; | |
| }; | |
| struct C { | |
| uint8_t data[160]; | |
| }; | |
| void foo(A a, B b) { | |
| // no-op | |
| } | |
| void bar(C c) { | |
| // no-op | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment