| Age | Commit message (Collapse) | Author |
|
The following is legal code in both C and C++:
struct foo {
struct bar { int a } x;
int y;
};
...however in C++ it defines a type called "foo::bar" instead of "bar".
Just avoid this construct altogether
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Fix various warnings
|
|
|
|
|
|
Signed-off-by: Patrick Hogan <[email protected]>
|
|
Signed-off-by: Patrick Hogan <[email protected]>
|
|
It doesn't appear to serve any purpose and allows removing warning about various unused variables littered around.
Signed-off-by: Patrick Hogan <[email protected]>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Conflicts:
src/variable.c
|
|
|
|
|
|
#undef DEBUG for compatibility with environments that define DEBUG (like Xcode)
|
|
fixed statement alignment
|
|
|
|
Signed-off-by: Patrick Hogan <[email protected]>
|
|
|