aboutsummaryrefslogtreecommitdiff
path: root/julia/CrystFEL
diff options
context:
space:
mode:
Diffstat (limited to 'julia/CrystFEL')
-rw-r--r--julia/CrystFEL/src/peaklist.jl2
1 files changed, 2 insertions, 0 deletions
diff --git a/julia/CrystFEL/src/peaklist.jl b/julia/CrystFEL/src/peaklist.jl
index d4354977..9eedad27 100644
--- a/julia/CrystFEL/src/peaklist.jl
+++ b/julia/CrystFEL/src/peaklist.jl
@@ -30,6 +30,8 @@ function PeakList()
end
+Base.copy(::PeakList) = throw(ErrorException("Cannot copy(::PeakList), must deepcopy"))
+
function Base.deepcopy(peaklist::PeakList)
out = @ccall libcrystfel.image_feature_list_copy(peaklist.internalptr::Ptr{InternalPeakList})::Ptr{InternalPeakList}
if out == C_NULL