Browse Source

Oops! Shouldn't be unsafe

Former-commit-id: fdc415962f7446c28020a7580f300d9b70802962
Former-commit-id: 025f9e682df7dbca03f7e8fca13a1a40b4945be1
Former-commit-id: d093f5c7d2a71fb23611719657fb20cb6e453f18
pull/1/head
James Jackson-South 10 years ago
parent
commit
43e3f05c9f
  1. 2
      src/ImageProcessorCore/Image/ImageBase.cs

2
src/ImageProcessorCore/Image/ImageBase.cs

@ -16,7 +16,7 @@ namespace ImageProcessorCore
/// <typeparam name="TColor">The pixel format.</typeparam>
/// <typeparam name="TPacked">The packed format. <example>uint, long, float.</example></typeparam>
[DebuggerDisplay("Image: {Width}x{Height}")]
public abstract unsafe class ImageBase<TColor, TPacked> : IImageBase<TColor, TPacked>
public abstract class ImageBase<TColor, TPacked> : IImageBase<TColor, TPacked>
where TColor : IPackedVector<TPacked>
where TPacked : struct
{

Loading…
Cancel
Save