Switch to unified view

a/src/index/indexer.cpp b/src/index/indexer.cpp
1
#ifndef lint
1
#ifndef lint
2
static char rcsid[] = "@(#$Id: indexer.cpp,v 1.16 2005-11-21 14:31:24 dockes Exp $ (C) 2004 J.F.Dockes";
2
static char rcsid[] = "@(#$Id: indexer.cpp,v 1.17 2005-11-24 07:16:15 dockes Exp $ (C) 2004 J.F.Dockes";
3
#endif
3
#endif
4
#include <stdio.h>
4
#include <stdio.h>
5
#include <sys/stat.h>
5
#include <sys/stat.h>
6
#include <unistd.h>
6
#include <unistd.h>
7
7
...
...
23
#include "debuglog.h"
23
#include "debuglog.h"
24
#include "internfile.h"
24
#include "internfile.h"
25
#include "smallut.h"
25
#include "smallut.h"
26
#include "wipedir.h"
26
#include "wipedir.h"
27
27
28
#ifndef NO_NAMESPACES
28
using namespace std;
29
using namespace std;
30
#endif /* NO_NAMESPACES */
29
31
30
#ifndef deleteZ
32
#ifndef deleteZ
31
#define deleteZ(X) {delete X;X = 0;}
33
#define deleteZ(X) {delete X;X = 0;}
32
#endif
34
#endif
33
35