diff options
author | Stephen Kelly <steveire@gmail.com> | 2017-01-18 22:55:57 +0000 |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2017-01-18 22:55:57 +0000 |
commit | c7940ff6b0c482b78d7a96db740e21488ce9587f (patch) | |
tree | 784ae1203dcc5da7e681b4620a519885503dcb8f /tests/GenerateSipBindings/cpplib.h | |
parent | 68611eca6d20a2f0f54de919e634222de39ed2e0 (diff) | |
download | extra-cmake-modules-c7940ff6b0c482b78d7a96db740e21488ce9587f.tar.gz extra-cmake-modules-c7940ff6b0c482b78d7a96db740e21488ce9587f.tar.bz2 |
Bindings: Handle const-ref parameters with {} initializer
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 60c5c66a..8333e7f0 100644 --- a/tests/GenerateSipBindings/cpplib.h +++ b/tests/GenerateSipBindings/cpplib.h @@ -55,6 +55,7 @@ public: void enumBraces(Qt::WindowFlags f = {}); void stringBraces(QString s = {}); + void stringRefBraces(QString const& s = {}); void intBraces(int i = {}); void pointerBraces(int* p = {}); |