aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test_compiles.c
diff options
context:
space:
mode:
authorSteffen Siering <steffen siering gmail com>2012-11-11 22:48:21 +0000
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2012-11-16 09:24:39 +0200
commitcc29958d34e43ed889536ad4a723fce819544785 (patch)
tree73517c9d9d1679560207702ebd7ff831f707c471 /tests/test_compiles.c
parent0abb764b1816e6a986c10c30444530e11d112cb1 (diff)
Fix STATIC_ASSERT macro when using multiple .proto files.
The __COUNTER__ macro (used for generating unique names) is at least supported by gcc, clang and Visual Studio. With this change test_compiles.c is compilable, since no more typedefs are redefined. Compilers/Preprocessors not supporting __COUNTER__ error's are still possible which are hopfully handled by the usage of __LINE__ in most sittuations. Added unit test for the problem.
Diffstat (limited to 'tests/test_compiles.c')
-rw-r--r--tests/test_compiles.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/test_compiles.c b/tests/test_compiles.c
new file mode 100644
index 00000000..cb4e16d3
--- /dev/null
+++ b/tests/test_compiles.c
@@ -0,0 +1,13 @@
+/*
+ * Tests if still compile if typedefs are redfefined in STATIC_ASSERTS when
+ * proto file includes another poto file
+ */
+
+#include <stdio.h>
+#include <pb_encode.h>
+#include "callbacks2.pb.h"
+
+int main()
+{
+ return 0;
+}