diff options
author | Shaheed Haque <srhaque@theiet.org> | 2017-01-05 20:27:44 +0000 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2017-01-05 20:30:21 +0000 |
commit | 13f66631495e232ae53a0bb683bce323f1a7acb2 (patch) | |
tree | 5933d72bd4dd17102abda18cd8e20c128f66457c /tests/GenerateSipBindings/cpplib.h | |
parent | 738972a9a29a429592fe7e375ff7c550d7c596d5 (diff) | |
download | extra-cmake-modules-13f66631495e232ae53a0bb683bce323f1a7acb2.tar.gz extra-cmake-modules-13f66631495e232ae53a0bb683bce323f1a7acb2.tar.bz2 |
Skip attributes on enums when generating bindings
Diffstat (limited to 'tests/GenerateSipBindings/cpplib.h')
-rw-r--r-- | tests/GenerateSipBindings/cpplib.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/GenerateSipBindings/cpplib.h b/tests/GenerateSipBindings/cpplib.h index 0d63c30e..932b3b67 100644 --- a/tests/GenerateSipBindings/cpplib.h +++ b/tests/GenerateSipBindings/cpplib.h @@ -113,3 +113,8 @@ private: }; } + +enum __attribute__((visibility("default"))) EnumWithAttributes { + Foo, + Bar = 2 +}; |