summaryrefslogtreecommitdiffstats
path: root/test/build_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/build_test.cpp')
-rw-r--r--test/build_test.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/build_test.cpp b/test/build_test.cpp
index 169c331..f8c3085 100644
--- a/test/build_test.cpp
+++ b/test/build_test.cpp
@@ -39,7 +39,8 @@ main()
try {
const raul::Symbol bad_symbol("not a valid symbol!");
(void)bad_symbol;
- } catch (const raul::Exception&) {
+ } catch (const raul::Exception& e) {
+ (void)e;
}
#if !defined(_WIN32) && !defined(__EMSCRIPTEN__)