Skip to content
Snippets Groups Projects
Commit dfbc9750 authored by Liam M. Healy's avatar Liam M. Healy
Browse files

Swap arguments in calls to histo(2d)-copy, clone

Arguments 'source and 'destination were swapped in calls to histo(2d)-copy, clone for grid:copy methods, now fixed. Reported by Mirko Vukovic.
parent a286ea0d
No related branches found
No related tags found
No related merge requests found
;; The histogram structure
;; Liam Healy, Mon Jan 1 2007 - 11:32
;; Time-stamp: <2013-10-04 10:40:54EDT histogram.lisp>
;; Time-stamp: <2014-10-16 22:54:14EDT histogram.lisp>
;;
;; Copyright 2007, 2008, 2009, 2010, 2011, 2012, 2013 Liam M. Healy
;; Copyright 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014 Liam M. Healy
;; Distributed under the terms of the GNU General Public License
;;
;; This program is free software: you can redistribute it and/or modify
......@@ -102,8 +102,8 @@
(defmethod grid:copy ((source histogram) &key destination &allow-other-keys)
(if destination
(histo-copy destination source)
(histo-clone destination)))
(histo-copy source destination)
(histo-clone source)))
(defmfun histo2d-copy (source destination)
"gsl_histogram2d_memcpy"
......@@ -127,8 +127,8 @@
(defmethod grid:copy ((source histogram2d) &key destination &allow-other-keys)
(if destination
(histo2d-copy destination source)
(histo2d-clone destination)))
(histo2d-copy source destination)
(histo2d-clone source)))
;;;;****************************************************************************
;;; Experimental direct access to vector
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment