Skip to content
Snippets Groups Projects
Commit bcb2be66 authored by Fredrik Noring's avatar Fredrik Noring
Browse files

Fixed obsoleted *-syntax.

Rev: lib/modules/Stack.pmod:1.5
Rev: lib/modules/String.pmod:1.10
parent 5f648cf4
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
class stack { class stack {
int ptr; int ptr;
mixed *arr; array arr;
void push(mixed val) void push(mixed val)
{ {
......
...@@ -78,7 +78,7 @@ string common_prefix(array(string) strs) ...@@ -78,7 +78,7 @@ string common_prefix(array(string) strs)
} }
class String_buffer { class String_buffer {
string *buffer=allocate(BEGIN); array(string) buffer=allocate(BEGIN);
int ptr=0; int ptr=0;
static void fix() static void fix()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment