diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-04-09 12:37:02 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-04-09 13:17:37 +0300 |
commit | f0aecebe20f3347ddc56828d4280b875682cad34 (patch) | |
tree | b86919205f1789cb027b2b206007b4e2a1a00cc3 /codemaker | |
parent | db403988a7fd7d468f53d9296ff8d6c213ce435c (diff) |
WaE: unused variable
Change-Id: I64ac7b45722e4147091068e71e9ceedea3d73010
Diffstat (limited to 'codemaker')
-rw-r--r-- | codemaker/source/codemaker/exceptiontree.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/codemaker/source/codemaker/exceptiontree.cxx b/codemaker/source/codemaker/exceptiontree.cxx index f8dd868f9180..a6e154e3073b 100644 --- a/codemaker/source/codemaker/exceptiontree.cxx +++ b/codemaker/source/codemaker/exceptiontree.cxx @@ -60,6 +60,7 @@ void ExceptionTree::add( list.push_back(n); rtl::Reference< unoidl::Entity > ent; codemaker::UnoType::Sort s = manager->getSort(b2u(n), &ent); + (void) s; // WaE: unused variable assert(s == codemaker::UnoType::SORT_EXCEPTION_TYPE); n = u2b( static_cast< unoidl::ExceptionTypeEntity * >(ent.get())-> |