]> Savannah Git Hosting - gnulib.git/commitdiff
stdbit-h: Fix syntax error.
authorBruno Haible <bruno@clisp.org>
Fri, 17 May 2024 10:58:08 +0000 (12:58 +0200)
committerBruno Haible <bruno@clisp.org>
Fri, 17 May 2024 10:58:08 +0000 (12:58 +0200)
* lib/stdbit.in.h (__gl_stdbit_ctzll) [_MSC_VER]: Fix syntax error.

ChangeLog
lib/stdbit.in.h

index 4b1d3cd5af198885ed9d9cb5917a8ca6b6662ec3..abc582f3286b7423ff1d6cf26eb9807acb25f063 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2024-05-17  Bruno Haible  <bruno@clisp.org>
+
+       stdbit-h: Fix syntax error.
+       * lib/stdbit.in.h (__gl_stdbit_ctzll) [_MSC_VER]: Fix syntax error.
+
 2024-05-17  Bruno Haible  <bruno@clisp.org>
 
        sys_select: Fix compilation error in C++ mode on macOS 13, 14.
index f241a5c5739a00a41f9d9d9f9329f9ccc7d7bdd0..b5b5870eba5f6ad1446ba057d941a7cb42b119a9 100644 (file)
@@ -247,7 +247,6 @@ __gl_stdbit_ctzll (unsigned long long int n)
   unsigned int lo = n;
   return __gl_stdbit_ctzl (lo ? lo : n >> 32) + (lo ? 0 : 32);
 # endif
-_GL_STDBIT_INLINE int
 }
 
 #else /* !_MSC_VER */