lua-bcrypt

Secure password hashing for Lua
Log | Files | Refs

commit 4664ead0fe52c903f23c1f69d645f1c787806fc7
parent 25741bcc9b36628cde16afb91a8790239d6d59f4
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Mon, 29 Dec 2014 11:06:15 +0000

whoops

Diffstat:
compat/safebfuns.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/compat/safebfuns.c b/compat/safebfuns.c @@ -7,7 +7,7 @@ * http://clang.llvm.org/docs/LanguageExtensions.html#feature-checking-macros * http://lists.cs.uiuc.edu/pipermail/cfe-dev/2014-December/040627.html */ - #if __has_attribute( noinline ) && __has_attribute( optnone ) + #if __has_attribute( noinline ) /* && __has_attribute( optnone ) */ #define NOOPT /* __attribute__ (( optnone )) */ #define NOINLINE __attribute__ (( noinline )) #else