about summary refs log tree commit diff stats
path: root/032array.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-23 23:27:36 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-23 23:27:36 -0700
commit93b7d98351cd7e090dd9a37f2786f4f0758c2c6e (patch)
treed897f40770e7b5ff701b644c3ed9810ff243a9b0 /032array.cc
parent235958e8b9c29e1bb4138e912d443daeaae5afcb (diff)
downloadmu-93b7d98351cd7e090dd9a37f2786f4f0758c2c6e.tar.gz
1830
Diffstat (limited to '032array.cc')
-rw-r--r--032array.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/032array.cc b/032array.cc
index e9aef14c..1231eb8b 100644
--- a/032array.cc
+++ b/032array.cc
@@ -40,7 +40,7 @@ recipe main [
 //: disable the size mismatch check since the destination array need not be initialized
 :(after "bool size_mismatch(const reagent& x, const vector<double>& data)")
 if (x.types.at(0) == Type_ordinal["array"]) return false;
-:(after "long long int size_of(const reagent& r)")
+:(before "End size_of(reagent) Cases")
   if (r.types.at(0) == Type_ordinal["array"]) {
     assert(SIZE(r.types) > 1);
     // skip the 'array' type to get at the element type