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.h | |
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.h')
-rw-r--r-- | tests/GenerateSipBindings/cpplib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/GenerateSipBindings/cpplib.h b/tests/GenerateSipBindings/cpplib.h index 8333e7f0..a91b5486 100644 --- a/tests/GenerateSipBindings/cpplib.h +++ b/tests/GenerateSipBindings/cpplib.h @@ -57,6 +57,7 @@ public: void stringBraces(QString s = {}); void stringRefBraces(QString const& s = {}); void intBraces(int i = {}); + void intRefBraces(int const& i = {}); void pointerBraces(int* p = {}); int const_parameters(const int input, QObject* const obj = 0) const; |