Don't define BSWAP16, it's not used.
authorTilman Sauerbeck <tilman@code-monkey.de>
Wed, 11 May 2005 17:19:38 +0000 (17:19 +0000)
committerTilman Sauerbeck <tilman@code-monkey.de>
Wed, 11 May 2005 17:19:38 +0000 (17:19 +0000)
ChangeLog
ext/ext.c

index 6195445ea8594a58aa2d147378140ff9a0aab638..107c9205cd1f4f516f766e925b5810e072bdeb06 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,10 @@
 --
-$Id: ChangeLog 35 2005-05-10 18:58:49Z tilman $
+$Id: ChangeLog 36 2005-05-11 17:19:38Z tilman $
 ++
 
+2005-05-11 Tilman Sauerbeck (tilman at code-monkey de)
+        * ext/ext.c: Don't define BSWAP16, it's not used
+
 2005-05-10 Tilman Sauerbeck (tilman at code-monkey de)
         * ext/ext.c: Store the result of rb_intern("include?") in a
           global variable, since it's used very often
index 02ddba9454dd2789c3e08b86cb7bd9f5747a492a..1e9d21f1b22a0332a42283dcc4de788fa1f89945 100644 (file)
--- a/ext/ext.c
+++ b/ext/ext.c
@@ -1,5 +1,5 @@
 /*
- * $Id: ext.c 35 2005-05-10 18:58:49Z tilman $
+ * $Id: ext.c 36 2005-05-11 17:19:38Z tilman $
  *
  * Copyright (c) 2005 Tilman Sauerbeck (tilman at code-monkey de)
  *
@@ -39,7 +39,6 @@
        ((((x) & 0xff000000) >> 24) | (((x) & 0x00ff0000) >> 8) | \
        (((x) & 0x0000ff00) << 8) | (((x) & 0x000000ff) << 24))
 #else /* !WORDS_BIGENDIAN */
-# define BSWAP16(x) (x)
 # define BSWAP32(x) (x)
 #endif /* WORDS_BIGENDIAN */