From: Wolfgang Bangerth Date: Sun, 5 Dec 2021 23:09:57 +0000 (-0700) Subject: Rename a variable to be grammatically correct. X-Git-Tag: v9.4.0-rc1~769^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52d81b7bafd94ac0ad948b175191e733a247e6ff;p=dealii.git Rename a variable to be grammatically correct. --- diff --git a/include/deal.II/base/work_stream.h b/include/deal.II/base/work_stream.h index ecb6c52121..9a6f04754c 100644 --- a/include/deal.II/base/work_stream.h +++ b/include/deal.II/base/work_stream.h @@ -504,7 +504,7 @@ namespace WorkStream [worker = std::function( worker), - copier_exist = + copier_exists = static_cast(std::function(copier))]( ItemType *¤t_item) { // we need to find an unused scratch data object in the list that @@ -590,7 +590,7 @@ namespace WorkStream } // if there is no copier, mark current item as usable again - if (copier_exist == false) + if (copier_exists == false) current_item->currently_in_use = false;