Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

@nogc #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/xxhash.d
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ $(TR $(TDNW Helpers) $(TD $(MYREF xxhashOf)))
* License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
* Authors: Masahiro Nakagawa
*/
module xxhash;
module xxhash; @nogc:

import std.bitmanip : swapEndian;

Expand Down Expand Up @@ -95,7 +95,7 @@ struct XXHash
ulong _totalLength;

public:
@safe pure nothrow
@safe pure nothrow @nogc
{
/**
* Constructs XXHash with seed.
Expand Down Expand Up @@ -255,7 +255,7 @@ unittest
{
import std.range : chunks;

void runTests(ubyte[] sentence, uint seed, uint expected)
void runTests(ubyte[] sentence, uint seed, uint expected) @nogc
{
assert(xxhashOf(sentence, seed) == expected, "xxhashOf failed");

Expand Down