diff options
author | Catalin Iacob <iacobcatalin@gmail.com> | 2012-04-18 22:52:21 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-04-23 14:16:34 +0200 |
commit | 835a063cee7f40169e3223cd2c56204e24d912f4 (patch) | |
tree | a35dfc165dd9982c99c39ee54eaff1a5847c14d2 /clucene/patches | |
parent | 8eb9c441d4dc7b1a1fc3a1fbf4104b2fda1d071d (diff) |
WaE: patch CLucene to avoid Clang unused parameter warning
Diffstat (limited to 'clucene/patches')
-rw-r--r-- | clucene/patches/clucene-multimap-put.patch | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/clucene/patches/clucene-multimap-put.patch b/clucene/patches/clucene-multimap-put.patch new file mode 100644 index 000000000000..bfff31a8727b --- /dev/null +++ b/clucene/patches/clucene-multimap-put.patch @@ -0,0 +1,9 @@ +--- src/core/CLucene/util/VoidMap.h ++++ src/core/CLucene/util/VoidMap.h +@@ -316,6 +316,7 @@ public: + if ( _this::dk || _this::dv ) + _this::remove(k); + ++ (*this)[k] = v; + } + }; |