Skip to content

Commit

Permalink
Oops! Shouldn't be unsafe
Browse files Browse the repository at this point in the history
  • Loading branch information
JimBobSquarePants committed Sep 2, 2016
1 parent 9d5d3ae commit fdc4159
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ImageProcessorCore/Image/ImageBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down

0 comments on commit fdc4159

Please sign in to comment.