summaryrefslogtreecommitdiff
path: root/textproc/mecab-base/patches/patch-src_utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/mecab-base/patches/patch-src_utils.cpp')
-rw-r--r--textproc/mecab-base/patches/patch-src_utils.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/textproc/mecab-base/patches/patch-src_utils.cpp b/textproc/mecab-base/patches/patch-src_utils.cpp
deleted file mode 100644
index fbec8773325..00000000000
--- a/textproc/mecab-base/patches/patch-src_utils.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-src_utils.cpp,v 1.1 2012/06/10 11:54:44 obache Exp $
-
-* `function not inlinable' with gcc-4.1.2 -O2 on NetBSD-5.1.2.
-
---- src/utils.cpp.orig 2012-04-12 15:46:14.000000000 +0000
-+++ src/utils.cpp
-@@ -408,7 +408,7 @@ namespace {
-
- #else // defined(_MSC_VER)
-
--#define FORCE_INLINE __attribute__((always_inline))
-+#define FORCE_INLINE inline __attribute__((always_inline))
-
- inline uint32_t rotl32 ( uint32_t x, uint8_t r ) {
- return (x << r) | (x >> (32 - r));