about summary refs log tree commit diff stats
path: root/024compare.cc
diff options
context:
space:
mode:
Diffstat (limited to '024compare.cc')
-rw-r--r--024compare.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/024compare.cc b/024compare.cc
index 92d87e5c..af370834 100644
--- a/024compare.cc
+++ b/024compare.cc
@@ -6,7 +6,7 @@ EQUAL,
 Recipe_number["equal"] = EQUAL;
 :(before "End Primitive Recipe Implementations")
 case EQUAL: {
-  vector<long long int>& exemplar = ingredients.at(0);
+  vector<double>& exemplar = ingredients.at(0);
   bool result = true;
   for (index_t i = 1; i < ingredients.size(); ++i) {
     if (!equal(ingredients.at(i).begin(), ingredients.at(i).end(), exemplar.begin())) {