From c2fb4a27fbb6121871744f211e71f1b3852a3cc2 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 3 May 2000 16:26:06 +0000 Subject: [PATCH] Suppress warning about unused variable in non-MT mode. git-svn-id: https://svn.dealii.org/trunk@2791 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/swappable_vector.templates.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deal.II/lac/include/lac/swappable_vector.templates.h b/deal.II/lac/include/lac/swappable_vector.templates.h index 6f825bb2f0..5fa66681dc 100644 --- a/deal.II/lac/include/lac/swappable_vector.templates.h +++ b/deal.II/lac/include/lac/swappable_vector.templates.h @@ -214,6 +214,8 @@ void SwappableVector::reload_vector (const bool set_flag) if (set_flag) data_is_preloaded = true; lock.release (); +#else + (void)set_flag; #endif }; -- 2.39.5