aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorOrgad Shaneh <orgad.shaneh@audiocodes.com>2014-01-08 20:21:44 +0200
committerhjk <hjk121@nokiamail.com>2014-01-08 21:42:51 +0100
commitca79e4294d47db960ce97abf30b9ef8598eba7bd (patch)
tree1900944a9dc0f7c052b657a19a5f381a26755c91 /tests
parent4424397ee446c88c24d8cf707fb3bcffa5556c55 (diff)
Fix compilation
Unused variable Change-Id: I190d8adf6efba8273ded2288c7232a1e77ef62f9 Reviewed-by: hjk <hjk121@nokiamail.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/manual/debugger/simple/simple_test_app.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/manual/debugger/simple/simple_test_app.cpp b/tests/manual/debugger/simple/simple_test_app.cpp
index 2d98cbef23e..a685f4b76c1 100644
--- a/tests/manual/debugger/simple/simple_test_app.cpp
+++ b/tests/manual/debugger/simple/simple_test_app.cpp
@@ -3311,6 +3311,7 @@ namespace lambda {
std::string x;
auto f = [&] () -> const std::string & {
int z = x.size();
+ Q_UNUSED(z);
return x;
};
auto c = f();