pkgsrc/devel/xulrunner192/patches/patch-toolkit_components_places_src_SQLFunctions.cpp
joerg 05a9d221d7 Global variables of types without default constructors may not be
constant. Fix issues with template look up. Disable visibility for clang
as it checks the consistency of type declarations and the old Mozilla
code is way too heavy to patch for that.
2012-11-18 01:55:52 +00:00

15 lines
738 B
C++

$NetBSD: patch-toolkit_components_places_src_SQLFunctions.cpp,v 1.1 2012/11/18 01:55:52 joerg Exp $
--- toolkit/components/places/src/SQLFunctions.cpp.orig 2012-11-17 18:28:05.000000000 +0000
+++ toolkit/components/places/src/SQLFunctions.cpp
@@ -122,8 +122,8 @@ namespace places {
if (aSourceString.IsEmpty())
return false;
- // Define a const instance of this class so it is created once.
- const nsCaseInsensitiveStringComparator caseInsensitiveCompare;
+ // Define a static instance of this class so it is created once.
+ static nsCaseInsensitiveStringComparator caseInsensitiveCompare;
const_wchar_iterator tokenStart(aToken.BeginReading()),
tokenEnd(aToken.EndReading()),