diff options
author | Stephen Kelly <steveire@gmail.com> | 2017-01-18 23:03:16 +0000 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2017-01-18 23:03:16 +0000 |
commit | ded67db971a2d185dc999255942141e54b44c478 (patch) | |
tree | 6fe8f0be7d9ddea57c2acc9585051274222e4ec6 /tests/GenerateSipBindings/cpplib.cpp | |
parent | c7940ff6b0c482b78d7a96db740e21488ce9587f (diff) | |
download | extra-cmake-modules-ded67db971a2d185dc999255942141e54b44c478.tar.gz extra-cmake-modules-ded67db971a2d185dc999255942141e54b44c478.tar.bz2 |
Bindings: Handle const-ref of non-record parameter defaults
Diffstat (limited to 'tests/GenerateSipBindings/cpplib.cpp')
-rw-r--r-- | tests/GenerateSipBindings/cpplib.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/GenerateSipBindings/cpplib.cpp b/tests/GenerateSipBindings/cpplib.cpp index 863c456e..47370ca0 100644 --- a/tests/GenerateSipBindings/cpplib.cpp +++ b/tests/GenerateSipBindings/cpplib.cpp @@ -125,6 +125,11 @@ void MyObject::intBraces(int i) } +void MyObject::intRefBraces(int const& s) +{ + +} + void MyObject::pointerBraces(int* p) { |