openbsd-ports/devel/mysql++/patches/patch-sqlplusint_custom_pl
wilfried bf0e4b3714 a few gcc3 patches
also move the header files to ${LOCALBASE}/include/mysql++
2004-01-06 11:16:53 +00:00

13 lines
472 B
Plaintext

$OpenBSD: patch-sqlplusint_custom_pl,v 1.1 2004/01/06 11:16:53 wilfried Exp $
--- sqlplusint/custom.pl.orig 2001-05-19 18:44:49.000000000 +0200
+++ sqlplusint/custom.pl 2004-01-04 23:25:47.000000000 +0100
@@ -13,7 +13,7 @@ print OUT0 << "---";
enum sql_dummy_type {sql_dummy};
enum sql_cmp_type {sql_use_compare};
-inline int sql_cmp(const string &a, const string &b) {
+inline int sql_cmp(const std::string &a, const std::string &b) {
return a.compare(b);
}
---