diff src/Cell.cc @ 5073:e71be9c548f2

[project @ 2004-11-09 18:31:25 by jwe]
author jwe
date Tue, 09 Nov 2004 18:31:26 +0000
parents a1073eef650c
children e35b034d3523
line wrap: on
line diff
--- a/src/Cell.cc
+++ b/src/Cell.cc
@@ -114,11 +114,9 @@
 }
 
 Cell
-concat (const Cell& ra, const Cell& rb, const Array<int>& ra_idx)
+Cell::concat (const Cell& rb, const Array<int>& ra_idx)
 {
-  Cell retval (ra);
-  retval.insert (rb, ra_idx);
-  return retval;
+  return insert (rb, ra_idx);
 }
 
 Cell&