From c9d87a21de86f0b84176d47c3403b888664ce125 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 19 Aug 2003 14:26:24 +0000 Subject: [PATCH] Add a cast to make cxx happy. git-svn-id: https://svn.dealii.org/trunk@7945 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/common/scripts/make_dependencies.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/common/scripts/make_dependencies.cc b/deal.II/common/scripts/make_dependencies.cc index 94810ae00a..f295cd59e4 100644 --- a/deal.II/common/scripts/make_dependencies.cc +++ b/deal.II/common/scripts/make_dependencies.cc @@ -78,7 +78,7 @@ void determine_direct_includes (const std::string &file) : ""); std::ifstream in(file.c_str()); - assert (in); + assert ((bool)in); std::string line; while (in) -- 2.39.5