Merge pull request #7 from waku-org/avoid-use-pragma-once

negentropy.h avoid use non standard #pragma one
This commit is contained in:
Ivan FB 2024-08-05 13:55:23 +02:00 committed by GitHub
commit 0d0318e807
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,7 @@
// (C) 2023 Doug Hoyte. MIT license
#pragma once
#ifndef _NEGENTROPY_H_
#define _NEGENTROPY_H_
#include <string.h>
@ -321,3 +322,5 @@ struct Negentropy {
template<typename T>
using Negentropy = negentropy::Negentropy<T>;
#endif