From e1ab1f5acc522ebe505b6ee48817808d67278a6c Mon Sep 17 00:00:00 2001 From: Fabian Boemer Date: Mon, 12 Apr 2021 09:48:06 -0700 Subject: [PATCH] Minor typo fix --- native/src/seal/util/defines.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native/src/seal/util/defines.h b/native/src/seal/util/defines.h index c4305b122..39ee432ed 100644 --- a/native/src/seal/util/defines.h +++ b/native/src/seal/util/defines.h @@ -163,7 +163,7 @@ namespace seal // Allocate "size" bytes in memory and returns a seal_byte pointer // If SEAL_USE_ALIGNED_ALLOC is defined, use _aligned_malloc and ::aligned_alloc (or std::malloc) -// Use `new sealbytes[size]` as fallback +// Use `new seal_byte[size]` as fallback #ifndef SEAL_MALLOC #define SEAL_MALLOC(size) (new seal_byte[size]) #endif