aboutsummaryrefslogtreecommitdiff
path: root/src/announce.cc
diff options
context:
space:
mode:
authorschnetter <schnetter@83718e91-0e4f-0410-abf4-91180603181f>2005-05-29 11:33:57 +0000
committerschnetter <schnetter@83718e91-0e4f-0410-abf4-91180603181f>2005-05-29 11:33:57 +0000
commit3996f4dec8488695fd5ab2a245b7b1ceec4651c5 (patch)
tree2641e0db3733b79bbce8f0b09cdf953e67ad09fd /src/announce.cc
parentc0a24229b042bc20258e368275684b45e8d683fe (diff)
Store boolean variables with their own type instead of as integers.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusUtils/Formaline/trunk@21 83718e91-0e4f-0410-abf4-91180603181f
Diffstat (limited to 'src/announce.cc')
-rw-r--r--src/announce.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/announce.cc b/src/announce.cc
index a7a60c6..1400012 100644
--- a/src/announce.cc
+++ b/src/announce.cc
@@ -444,7 +444,7 @@ Formaline_AnnounceInitial (CCTK_ARGUMENTS)
= * static_cast<CCTK_INT const *> (parameter_value);
if (times_set > 0 or value != default_value)
{
- stores.store (key, value);
+ stores.store (key, (bool) value);
}
}
break;