pike.git/
src/
builtin.cmod
Branch:
Tag:
Non-build tags
All tags
No tags
2019-10-16
2019-10-16 09:03:11 by Henrik Grubbström (Grubba) <grubba@grubba.org>
f3b54465b6ea8e2094be50c0eb9cfbcd21127410 (
28
lines) (+
15
/-
13
)
[
Show
|
Annotate
]
Branch:
8.0
Pike: Move DestructImmediate to the Pike module.
2436:
/*! @module Pike */
+
/*! @class DestructImmediate
+
*!
+
*! An empty class that can be inherited to get the
+
*! @tt{PROGRAM_DESTRUCT_IMMEDIATE@} flag set.
+
*/
+
+
PIKECLASS DestructImmediate
+
program_flags PROGRAM_DESTRUCT_IMMEDIATE;
+
{
+
}
+
+
/*! @endclass
+
*/
+
/*! @class FakeObject *! *! Used as a place holder in eg backtraces for objects that
4584:
/*! @endclass */
-
/*! @class DestructImmediate
-
*! An empty class that can be intherited to get the PROGRAM_DESTRUCT_IMMEDIATE
-
*! flag set.
-
*/
-
-
PIKECLASS DestructImmediate
-
program_flags PROGRAM_DESTRUCT_IMMEDIATE;
-
{
-
}
-
-
/*! @endclass
-
*/
-
+
PMOD_EXPORT PIKEFUN int levenshtein_distance(string a, string b) {