pike.git/
lib/
modules/
Sql.pmod/
module.pmod
Branch:
Tag:
Non-build tags
All tags
No tags
2016-03-27
2016-03-27 13:20:54 by Henrik Grubbström (Grubba) <grubba@grubba.org>
78faf1a9d3decff09bbf99997ecad925a6365c59 (
9
lines) (+
5
/-
4
)
[
Show
|
Annotate
]
Branch:
8.1
Sql: Get rid of some erroneous deprecation warnings.
77:
inherit __builtin.Sql.Result; }
-
#pragma no_deprecation_warnings
+
//! @class mysql_result //! @deprecated Result //! @endclass
-
__deprecated__(program(Result)) mysql_result = Result;
+
__deprecated__(program(Result)) mysql_result =
+
(__deprecated__(program(
Result
)))Result
;
//! @class mysqls_result //! @deprecated Result //! @endclass
-
__deprecated__(program(Result)) mysqls_result =
Result;
-
#pragma
deprecation
_
warnings
+
__deprecated__(program(Result)) mysqls_result =
+
(__deprecated__(program(
Result
)))Result
;