pike.git/
src/
builtin.cmod
Branch:
Tag:
Non-build tags
All tags
No tags
2019-06-12
2019-06-12 09:17:36 by Henrik Grubbström (Grubba) <grubba@grubba.org>
006992a0e80c60d65a35a599647ce87a9084a31d (
28
lines) (+
15
/-
13
)
[
Show
|
Annotate
]
Branch:
master
Pike: Move DestructImmediate to the Pike module.
2932:
/*! @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 InhibitDestruct *! *! This is a class that implements a way to temporarily
5225:
/*! @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) {