Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

dirstate.cpp: remove unneeded #include and #define directives

Changeset 3a637b71ad28

Parent 2af98cce8b08

by Adrian Buehlmann

Changes to one file · Browse files at 3a637b71ad28 Showing diff from parent 2af98cce8b08 Diff from another changeset...

 
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
 
18
19
20
 
 
 
 
 
 
 
21
22
23
24
25
26
 
 
 
 
 
 
 
 
 
 
 
 
27
28
29
@@ -18,31 +18,12 @@
   #include "dirstate.h"   -#include <stdio.h> -#include <stdlib.h> -#include <stddef.h> -#include <time.h> -#include <sys/types.h> -#include <sys/stat.h> -  #include <vector>  #include <list>      #ifdef WIN32   -#ifndef _WINBASE_ -#include <windef.h> // needed by winbase.h -#include <stdarg.h> // needed by winbase.h -#include <winbase.h> -#endif - -#include <string.h> -#include <_mingw.h> - -#define MAX_PATH 260 - -  static __int64 days_between_epochs = 134774; /* days between 1.1.1601 and 1.1.1970 */  static __int64 secs_between_epochs = (__int64)days_between_epochs * 86400;